(t *testing.T)
| 2414 | } |
| 2415 | |
| 2416 | func Test_App_ReloadViews_InterfaceNilPointer(t *testing.T) { |
| 2417 | t.Parallel() |
| 2418 | var view *countingView |
| 2419 | app := &App{config: Config{Views: view}} |
| 2420 | |
| 2421 | err := app.ReloadViews() |
| 2422 | require.ErrorIs(t, err, ErrNoViewEngineConfigured) |
| 2423 | } |
| 2424 | |
| 2425 | func Test_App_ReloadViews_MountedViews(t *testing.T) { |
| 2426 | t.Parallel() |
nothing calls this directly
no test coverage detected