(t *testing.T)
| 680 | } |
| 681 | |
| 682 | func TestSetupAndValidateLogging(t *testing.T) { |
| 683 | t.Skip("Skipping TestSetupAndValidateLogging") |
| 684 | base.SetUpTestLogging(t, base.LevelInfo, base.KeyAll) |
| 685 | sc := &StartupConfig{} |
| 686 | err := sc.SetupAndValidateLogging(base.TestCtx(t)) |
| 687 | assert.NoError(t, err, "Setup and validate logging should be successful") |
| 688 | assert.NotEmpty(t, sc.Logging) |
| 689 | } |
| 690 | |
| 691 | func TestSetupAndValidateLoggingWithLoggingConfig(t *testing.T) { |
| 692 | t.Skip("Skipping TestSetupAndValidateLoggingWithLoggingConfig") |
nothing calls this directly
no test coverage detected