(t *testing.T)
| 41 | } |
| 42 | |
| 43 | func TestWorkPoolDoesntAcceptSolution(t *testing.T) { |
| 44 | wp := WorkPool{} |
| 45 | s := newTestSolution() |
| 46 | if wp.AcceptSolution(s) != nil { |
| 47 | t.Fail() |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func TestWorkPoolAddWorkByItsID(t *testing.T) { |
| 52 | wp := WorkPool{} |
nothing calls this directly
no test coverage detected