ソースを参照

build: replace fest with assertj

Emil Sit 10 年 前
コミット
47ecd72268

+ 0
- 1
etl/build.gradle ファイルの表示

@@ -1,4 +1,3 @@
1 1
 dependencies {
2
-  testCompile "org.easytesting:fest-assert-core:2.0M10"
3 2
   testCompile "com.google.guava:guava:16+"
4 3
 }

+ 1
- 1
etl/src/test/java/EtlTest.java ファイルの表示

@@ -5,7 +5,7 @@ import java.util.Arrays;
5 5
 import java.util.List;
6 6
 import java.util.Map;
7 7
 
8
-import static org.fest.assertions.api.Assertions.assertThat;
8
+import static org.assertj.core.api.Assertions.assertThat;
9 9
 
10 10
 public class EtlTest {
11 11
     private final Etl etl = new Etl();

+ 0
- 3
grade-school/build.gradle ファイルの表示

@@ -1,3 +0,0 @@
1
-dependencies {
2
-  testCompile "org.easytesting:fest-assert-core:2.0M10"
3
-}

+ 1
- 1
grade-school/src/test/java/SchoolTest.java ファイルの表示

@@ -1,4 +1,4 @@
1
-import static org.fest.assertions.api.Assertions.assertThat;
1
+import static org.assertj.core.api.Assertions.assertThat;
2 2
 
3 3
 import org.junit.Test;
4 4
 

+ 0
- 1
meetup/build.gradle ファイルの表示

@@ -1,4 +1,3 @@
1 1
 dependencies {
2 2
   compile "joda-time:joda-time:2.3+"
3
-  testCompile "org.easytesting:fest-assert-core:2.0M10"
4 3
 }

+ 1
- 1
meetup/src/test/java/MeetupTest.java ファイルの表示

@@ -2,7 +2,7 @@ import org.joda.time.DateTime;
2 2
 import org.joda.time.DateTimeConstants;
3 3
 import org.junit.Test;
4 4
 
5
-import static org.fest.assertions.api.Assertions.assertThat;
5
+import static org.assertj.core.api.Assertions.assertThat;
6 6
 import static org.joda.time.DateTimeConstants.*;
7 7
 
8 8
 /*

+ 0
- 3
nucleotide-count/build.gradle ファイルの表示

@@ -1,3 +0,0 @@
1
-dependencies {
2
-  testCompile "org.easytesting:fest-assert-core:2.0M10"
3
-}

+ 2
- 2
nucleotide-count/src/test/java/NucleotideTest.java ファイルの表示

@@ -1,5 +1,5 @@
1
-import static org.fest.assertions.api.Assertions.assertThat;
2
-import static org.fest.assertions.api.Assertions.entry;
1
+import static org.assertj.core.api.Assertions.assertThat;
2
+import static org.assertj.core.api.Assertions.entry;
3 3
 
4 4
 import org.junit.Test;
5 5