(t *testing.T)
| 99 | } |
| 100 | |
| 101 | func TestDefaultStartupConfig(t *testing.T) { |
| 102 | ctx := base.TestCtx(t) |
| 103 | sc, _, _, err := parseFlags(ctx, []string{"sync_gateway"}) |
| 104 | require.NoError(t, err) |
| 105 | require.Nil(t, sc.HeapProfileCollectionThreshold) |
| 106 | } |
| 107 | |
| 108 | func TestSanitizeDbConfigs(t *testing.T) { |
| 109 | serverAddressErrorString := "automatic upgrade to persistent config requires each database config to have a server address specified that are all matching in the 2.x config" |
nothing calls this directly
no test coverage detected