(t *testing.T)
| 105 | } |
| 106 | |
| 107 | func TestBreakTimerExportFunction(t *testing.T) { |
| 108 | output, configuration := setup(t) |
| 109 | configuration.NotifyCommand = "" |
| 110 | configuration.VoiceCommand = "" |
| 111 | |
| 112 | StartBreakTimer("5", configuration) |
| 113 | |
| 114 | assertOutputContains(t, output, "5 min break timer ends at approx.") |
| 115 | assertOutputContains(t, output, "So take a break now! :)") |
| 116 | } |
nothing calls this directly
no test coverage detected