(t *testing.T)
| 12 | ) |
| 13 | |
| 14 | func TestCommands(t *testing.T) { |
| 15 | config := configuration.NewRepositoryWithDefaults() |
| 16 | i18n.T = i18n.Init(config) |
| 17 | |
| 18 | _ = commands.API{} |
| 19 | |
| 20 | RegisterFailHandler(Fail) |
| 21 | RunSpecs(t, "Commands Suite") |
| 22 | } |
| 23 | |
| 24 | var _ = BeforeEach(func() { |
| 25 | log.SetLevel(log.PanicLevel) |
nothing calls this directly
no test coverage detected