We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 687020b commit 7eac364Copy full SHA for 7eac364
exercises/rest-api/build.gradle
@@ -8,7 +8,8 @@ repositories {
8
9
dependencies {
10
compile 'org.json:json:20190722'
11
- testCompile "junit:junit:4.12"
+ testCompile "junit:junit:4.13"
12
+ testImplementation "org.assertj:assertj-core:3.15.0"
13
}
14
15
test {
exercises/rest-api/src/test/java/RestApiTest.java
@@ -1,11 +1,12 @@
1
+import static org.junit.Assert.assertEquals;
2
+
3
+import org.json.JSONArray;
4
+import org.json.JSONObject;
5
import org.junit.Ignore;
6
import org.junit.Test;
7
import org.junit.experimental.runners.Enclosed;
import org.junit.runner.RunWith;
-import org.json.JSONArray;
-import org.json.JSONObject;
-import static org.junit.Assert.assertEquals;
@RunWith(Enclosed.class)
public class RestApiTest {
0 commit comments