CheckNum make int assertion.
(num, expected int32, t *testing.T)
| 64 | |
| 65 | // CheckNum make int assertion. |
| 66 | func CheckNum(num, expected int32, t *testing.T) { |
| 67 | if num != expected { |
| 68 | t.Errorf("got %d, expected %d", num, expected) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | type TestService struct { |
| 73 | counter int32 |
no test coverage detected