(t *testing.T)
| 69 | } |
| 70 | |
| 71 | func Test_InitSettings_SetsModeToSimulate(t *testing.T) { |
| 72 | RegisterTestingT(t) |
| 73 | |
| 74 | settings := InitSettings() |
| 75 | |
| 76 | Expect(settings.Mode).To(Equal("simulate")) |
| 77 | } |
| 78 | |
| 79 | // TestSetMode - tests SetMode function, however it doesn't test |
| 80 | // whether mutex works correctly or not |
nothing calls this directly
no test coverage detected