(t *testing.T)
| 33 | ) |
| 34 | |
| 35 | func TestNewAtomicMapString(t *testing.T) { |
| 36 | assert.NotNil(t, NewAtomicMap[string, string](), "Atomic map should not be nil") |
| 37 | assert.NotNil(t, NewAtomicMap[string, float64](), "Atomic map should not be nil") |
| 38 | assert.NotNil(t, NewAtomicMap[bool, mockTypeStruct](), "Atomic map should not be nil") |
| 39 | assert.NotNil(t, NewAtomicMap[string, *mockTypeStruct](), "Atomic map should not be nil") |
| 40 | assert.NotNil(t, NewAtomicMap[int, interface{}](), "Atomic map should not be nil") |
| 41 | } |
| 42 | |
| 43 | func TestAtomicMap_AtomicGet(t *testing.T) { |
| 44 | atomicMap := NewAtomicMap[string, string]() |
nothing calls this directly
no test coverage detected