(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestTimerExportFunction(t *testing.T) { |
| 67 | output, configuration := setup(t) |
| 68 | configuration.NotifyCommand = "" |
| 69 | configuration.VoiceCommand = "" |
| 70 | |
| 71 | StartTimer("1", configuration) |
| 72 | |
| 73 | assertOutputContains(t, output, "1 min timer ends at approx.") |
| 74 | assertOutputContains(t, output, "Happy collaborating! :)") |
| 75 | } |
| 76 | |
| 77 | func TestBreakTimerNumberLessThen1(t *testing.T) { |
| 78 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected