DATACASS-485 - Rename all test classes to XxxIntegrationTests in order to be picked up by the build.
This commit is contained in:
@@ -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();
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user