()
| 12 | var keys []string |
| 13 | |
| 14 | func init() { |
| 15 | ic = NewConcurrenceMap() |
| 16 | for i := 0; i < 10000000; i++ { |
| 17 | keys = append(keys, time.Now().String()) |
| 18 | } |
| 19 | fmt.Println("len of keys ", len(keys)) |
| 20 | |
| 21 | } |
| 22 | |
| 23 | func TestItemContext_Get_Set(t *testing.T) { |
| 24 |
nothing calls this directly
no test coverage detected