(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestUser(t *testing.T) { |
| 13 | config := configuration.NewRepositoryWithDefaults() |
| 14 | i18n.T = i18n.Init(config) |
| 15 | |
| 16 | RegisterFailHandler(Fail) |
| 17 | RunSpecs(t, "User Suite") |
| 18 | } |
| 19 | |
| 20 | type passingRequirement struct { |
| 21 | Name string |
nothing calls this directly
no test coverage detected