(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestTimerNumberLessThen1(t *testing.T) { |
| 37 | output, configuration := setup(t) |
| 38 | |
| 39 | err := startTimer("0", configuration) |
| 40 | |
| 41 | assertError(t, err, "The parameter must be an integer number greater then zero") |
| 42 | assertOutputContains(t, output, "The parameter must be an integer number greater then zero") |
| 43 | } |
| 44 | |
| 45 | func TestTimerNotANumber(t *testing.T) { |
| 46 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected