Migrate from fest-assert to assertj

Fixes gh-338
This commit is contained in:
Rob Winch
2016-01-25 19:41:54 -06:00
parent 1003821dad
commit 5dff0ff37b
30 changed files with 32 additions and 32 deletions

View File

@@ -27,7 +27,7 @@ dependencies {
"org.apache.httpcomponents:httpclient:4.4.1"
testCompile "org.springframework.boot:spring-boot-starter-test",
'org.easytesting:fest-assert:1.4'
"org.assertj:assertj-core:$assertjVersion"
integrationTestCompile gebDependencies,
"org.spockframework:spock-spring:$spockVersion"

View File

@@ -15,7 +15,7 @@
*/
package sample.session;
import static org.fest.assertions.Assertions.*;
import static org.assertj.core.api.Assertions.*;
import org.junit.Before;
import org.junit.Test;