Test_loadTimestamp_Empty verifies loadTimestamp returns an empty string when the atomic value has never been stored.
(t *testing.T)
| 73 | // Test_loadTimestamp_Empty verifies loadTimestamp returns an empty string when |
| 74 | // the atomic value has never been stored. |
| 75 | func Test_loadTimestamp_Empty(t *testing.T) { |
| 76 | t.Parallel() |
| 77 | |
| 78 | var v atomic.Value |
| 79 | require.Empty(t, loadTimestamp(&v)) |
| 80 | } |
| 81 | |
| 82 | // Test_UnknownTagError_WithHint covers the Hint branch of Error(). |
| 83 | func Test_UnknownTagError_WithHint(t *testing.T) { |
nothing calls this directly
no test coverage detected