(t *testing.T)
| 14 | } |
| 15 | |
| 16 | func TestOpenTimerInBrowserWithoutTimerRoom(t *testing.T) { |
| 17 | mockOpenInBrowser() |
| 18 | output, configuration := setup(t) |
| 19 | |
| 20 | err := openTimerInBrowser(configuration) |
| 21 | |
| 22 | assertOutputContains(t, output, "Timer Room is not configured.") |
| 23 | assertNoError(t, err) |
| 24 | } |
| 25 | |
| 26 | func TestOpenTimerInBrowserError(t *testing.T) { |
| 27 | mockOpenInBrowser() |
nothing calls this directly
no test coverage detected