Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions pkg/testutil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@ func TestMyFunction(t *testing.T) {

`GetTestRunDir` is safe to call concurrently from multiple goroutines; the underlying `sync.Once` ensures the directory is created exactly once. `TempDir` and `CaptureStderr` require a valid `*testing.T` and MUST be called from a single test goroutine only (as required by the `testing` package).

<!-- BEGIN SOURCE-VERIFIED EXPORT COVERAGE -->
## Source-verified export coverage

This appendix is generated from the current non-test Go source files in this package and records any exported top-level symbols that are not already described above.

| Category | Count |
|----------|------:|
| Types | 0 |
| Constants | 0 |
| Variables | 0 |
| Functions and methods | 4 |
| Additional symbols documented in this appendix | 0 |

The sections above already mention every exported top-level symbol in the current source tree.
<!-- END SOURCE-VERIFIED EXPORT COVERAGE -->

---

*This specification is automatically maintained by the [spec-extractor](../../.github/workflows/spec-extractor.md) workflow.*
16 changes: 16 additions & 0 deletions pkg/timeutil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,22 @@ timeutil.FormatDurationNs(90_000_000_000) // "1m30s"

All functions in this package are stateless pure functions. They are safe to call concurrently from multiple goroutines without synchronization.

<!-- BEGIN SOURCE-VERIFIED EXPORT COVERAGE -->
## Source-verified export coverage

This appendix is generated from the current non-test Go source files in this package and records any exported top-level symbols that are not already described above.

| Category | Count |
|----------|------:|
| Types | 0 |
| Constants | 0 |
| Variables | 0 |
| Functions and methods | 3 |
| Additional symbols documented in this appendix | 0 |

The sections above already mention every exported top-level symbol in the current source tree.
<!-- END SOURCE-VERIFIED EXPORT COVERAGE -->

---

*This specification is automatically maintained by the [spec-extractor](../../.github/workflows/spec-extractor.md) workflow.*
Loading