From ef2fe9cd3e647bd02fca6d10de7d97d4c58c2be5 Mon Sep 17 00:00:00 2001 From: john-mcpeek Date: Mon, 30 Dec 2013 09:17:48 -0500 Subject: [PATCH] Added NetworkTopology integration test. --- .../CreateKeyspaceCqlGeneratorIntegrationTests.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/spring-cassandra/src/test/java/org/springframework/cassandra/test/integration/core/cql/generator/CreateKeyspaceCqlGeneratorIntegrationTests.java b/spring-cassandra/src/test/java/org/springframework/cassandra/test/integration/core/cql/generator/CreateKeyspaceCqlGeneratorIntegrationTests.java index 0217ed0b6..2524e0205 100644 --- a/spring-cassandra/src/test/java/org/springframework/cassandra/test/integration/core/cql/generator/CreateKeyspaceCqlGeneratorIntegrationTests.java +++ b/spring-cassandra/src/test/java/org/springframework/cassandra/test/integration/core/cql/generator/CreateKeyspaceCqlGeneratorIntegrationTests.java @@ -6,6 +6,7 @@ import org.junit.Test; import org.springframework.cassandra.test.integration.AbstractEmbeddedCassandraIntegrationTest; import org.springframework.cassandra.test.unit.core.cql.generator.CreateKeyspaceCqlGeneratorTests.BasicTest; import org.springframework.cassandra.test.unit.core.cql.generator.CreateKeyspaceCqlGeneratorTests.CreateKeyspaceTest; +import org.springframework.cassandra.test.unit.core.cql.generator.CreateKeyspaceCqlGeneratorTests.NetworkTopologyTest; /** * Integration tests that reuse unit tests. @@ -42,4 +43,12 @@ public class CreateKeyspaceCqlGeneratorIntegrationTests { return new BasicTest(); } } + + public static class NetworkTopologyIntegrationTest extends Base { + + @Override + public NetworkTopologyTest unit() { + return new NetworkTopologyTest(); + } + } } \ No newline at end of file