(tb testing.TB, typ MapType, maxEntries uint32)
| 109 | } |
| 110 | |
| 111 | func createMap(tb testing.TB, typ MapType, maxEntries uint32) *Map { |
| 112 | tb.Helper() |
| 113 | |
| 114 | return mustNewMap(tb, &MapSpec{ |
| 115 | Name: "test", |
| 116 | Type: typ, |
| 117 | KeySize: 4, |
| 118 | ValueSize: 4, |
| 119 | MaxEntries: maxEntries, |
| 120 | }, nil) |
| 121 | } |
| 122 | |
| 123 | func createMapInMap(tb testing.TB, outer, inner MapType) *Map { |
| 124 | tb.Helper() |
no test coverage detected
searching dependent graphs…