(t *testing.T)
| 37 | } |
| 38 | |
| 39 | func TestItemContext_Remove(t *testing.T) { |
| 40 | |
| 41 | ic.Set("foo", "bar") |
| 42 | ic.Set("foo1", "bar1") |
| 43 | t.Log(len(ic.GetCurrentMap())) |
| 44 | ic.Remove("foo") |
| 45 | t.Log(ic.GetString("foo")) |
| 46 | } |
| 47 | |
| 48 | func TestItemContext_Current(t *testing.T) { |
| 49 | lock := &sync.Mutex{} |
nothing calls this directly
no test coverage detected