(t *testing.T)
| 39 | } |
| 40 | |
| 41 | func Test_IsDevelopmentMode_2(t *testing.T) { |
| 42 | app := New() |
| 43 | app.Config.App.RunMode = "production" |
| 44 | b := app.IsDevelopmentMode() |
| 45 | t.Log("Run IsDevelopmentMode :", b) |
| 46 | } |
| 47 | |
| 48 | func newConfigDotWeb() *DotWeb { |
| 49 | app := New() |
nothing calls this directly
no test coverage detected