(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestOpenTimerInBrowserError(t *testing.T) { |
| 27 | mockOpenInBrowser() |
| 28 | _, configuration := setup(t) |
| 29 | configuration.TimerUrl = "" |
| 30 | |
| 31 | err := openTimerInBrowser(configuration) |
| 32 | |
| 33 | assertError(t, err, "Timer url is not configured") |
| 34 | } |
| 35 | |
| 36 | func TestTimerNumberLessThen1(t *testing.T) { |
| 37 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected