(name string, val interface{})
| 33 | } |
| 34 | |
| 35 | func mkFifoObj(name string, val interface{}) testFifoObject { |
| 36 | return testFifoObject{name: name, val: val} |
| 37 | } |
| 38 | |
| 39 | func TestFIFO_basic(t *testing.T) { |
| 40 | f := NewFIFO(testFifoObjectKeyFunc) |
no outgoing calls
no test coverage detected