(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestSmartPoolNotAcceptSolution(t *testing.T) { |
| 67 | sp := newTestSmartPool() |
| 68 | sp.LatestCounter = big.NewInt(10) |
| 69 | if sp.AcceptSolution(&testSolution{Counter: big.NewInt(9)}) { |
| 70 | t.Fail() |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | func TestSmartPoolPackageAllCurrentShares(t *testing.T) { |
| 75 | sp := newTestSmartPool() |
nothing calls this directly
no test coverage detected