()
| 21 | ) |
| 22 | |
| 23 | func setupConfiguration() { |
| 24 | viper.Reset() |
| 25 | viper.Set("client-profile.test.client-id", "testid") |
| 26 | viper.Set("storage.teststorage.class-name", "inmemory") |
| 27 | viper.Set("consumer.testconsumer.class-name", "kafka_zk") |
| 28 | viper.Set("consumer.testconsumer.client-profile", "test") |
| 29 | viper.Set("cluster.testcluster.class-name", "kafka") |
| 30 | viper.Set("cluster.testcluster.client-profile", "test") |
| 31 | viper.Set("evaluator.testevaluator.class-name", "caching") |
| 32 | viper.Set("notifier.testnotifier.class-name", "null") |
| 33 | } |
| 34 | |
| 35 | func TestHttpServer_configMain(t *testing.T) { |
| 36 | coordinator := fixtureConfiguredCoordinator() |
no outgoing calls
no test coverage detected