(t *testing.T)
| 105 | } |
| 106 | |
| 107 | func TestSmartPoolReturnFalseIfNoClaim(t *testing.T) { |
| 108 | sp := newTestSmartPool() |
| 109 | if ok, _ := sp.Submit(); ok { |
| 110 | t.Fail() |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | func TestSmartPoolSuccessfullySubmitAndVerifyClaim(t *testing.T) { |
| 115 | sp := newTestSmartPool() |
nothing calls this directly
no test coverage detected