DATACASS-485 - Rename all test classes to XxxIntegrationTests in order to be picked up by the build.

This commit is contained in:
John Blum
2018-02-01 22:48:12 -08:00
parent e3efe92c7f
commit 41eaa3a90c
8 changed files with 10 additions and 10 deletions

View File

@@ -40,7 +40,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ExecutableDeleteOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ExecutableDeleteOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate template;
@@ -52,7 +52,7 @@ public class ExecutableDeleteOperationSupportTests extends AbstractKeyspaceCreat
template = new CassandraAdminTemplate(session, new MappingCassandraConverter());
template.dropTable(true, CqlIdentifier.of("person"));
template.createTable(true, CqlIdentifier.of("person"), ExecutableInsertOperationSupportTests.Person.class,
template.createTable(true, CqlIdentifier.of("person"), ExecutableInsertOperationSupportIntegrationTests.Person.class,
Collections.emptyMap());
han = new Person();

View File

@@ -36,7 +36,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ExecutableInsertOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ExecutableInsertOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate template;

View File

@@ -46,7 +46,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ExecutableSelectOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ExecutableSelectOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate template;

View File

@@ -41,7 +41,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ExecutableUpdateOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ExecutableUpdateOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate template;

View File

@@ -43,7 +43,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ReactiveDeleteOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ReactiveDeleteOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate admin;
@@ -59,7 +59,7 @@ public class ReactiveDeleteOperationSupportTests extends AbstractKeyspaceCreatin
template = new ReactiveCassandraTemplate(new DefaultBridgedReactiveSession(session));
admin.dropTable(true, CqlIdentifier.of("person"));
admin.createTable(true, CqlIdentifier.of("person"), ExecutableInsertOperationSupportTests.Person.class,
admin.createTable(true, CqlIdentifier.of("person"), ExecutableInsertOperationSupportIntegrationTests.Person.class,
Collections.emptyMap());
han = new Person();

View File

@@ -40,7 +40,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ReactiveInsertOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ReactiveInsertOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate admin;

View File

@@ -49,7 +49,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ReactiveSelectOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ReactiveSelectOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate admin;

View File

@@ -45,7 +45,7 @@ import org.springframework.data.cassandra.test.util.AbstractKeyspaceCreatingInte
*
* @author Mark Paluch
*/
public class ReactiveUpdateOperationSupportTests extends AbstractKeyspaceCreatingIntegrationTest {
public class ReactiveUpdateOperationSupportIntegrationTests extends AbstractKeyspaceCreatingIntegrationTest {
CassandraAdminTemplate admin;