(t *testing.T)
| 2406 | } |
| 2407 | |
| 2408 | func Test_App_ReloadViews_NoEngine(t *testing.T) { |
| 2409 | t.Parallel() |
| 2410 | app := New() |
| 2411 | |
| 2412 | err := app.ReloadViews() |
| 2413 | require.ErrorIs(t, err, ErrNoViewEngineConfigured) |
| 2414 | } |
| 2415 | |
| 2416 | func Test_App_ReloadViews_InterfaceNilPointer(t *testing.T) { |
| 2417 | t.Parallel() |
nothing calls this directly
no test coverage detected