(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestSmartPoolAcceptSolution(t *testing.T) { |
| 60 | sp := newTestSmartPool() |
| 61 | if !sp.AcceptSolution(&testSolution{Counter: big.NewInt(10)}) { |
| 62 | t.Fail() |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func TestSmartPoolNotAcceptSolution(t *testing.T) { |
| 67 | sp := newTestSmartPool() |
nothing calls this directly
no test coverage detected