DATACASS-333 - Switch tests to AssertJ.

This commit is contained in:
Mark Paluch
2016-08-01 09:48:26 -07:00
parent fcd383ef15
commit 8ff1f0e3fc
144 changed files with 1815 additions and 2006 deletions

14
pom.xml
View File

@@ -77,6 +77,7 @@
<multithreadedtc.version>1.01</multithreadedtc.version>
<project.type>multi</project.type>
<springdata.commons>1.13.0.BUILD-SNAPSHOT</springdata.commons>
<assertj>3.5.2</assertj>
</properties>
<repositories>
@@ -202,6 +203,13 @@
<version>${multithreadedtc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
@@ -210,6 +218,12 @@
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>