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 4dbb43c commit 1ff7a1aCopy full SHA for 1ff7a1a
address-service/src/test/java/net/nautsch/address/AddressesTest.java
@@ -1,11 +1,10 @@
1
package net.nautsch.address;
2
3
-import static org.hamcrest.CoreMatchers.notNullValue;
4
-import static org.junit.Assert.*;
5
-
6
-import org.hamcrest.CoreMatchers;
7
import org.junit.Test;
8
+import static org.hamcrest.CoreMatchers.notNullValue;
+import static org.junit.Assert.assertThat;
+
9
/**
10
* unit test.
11
*/
@@ -16,7 +15,7 @@ public void shouldReturnList() throws Exception {
16
15
// given
17
Addresses cut = new Addresses();
18
// when
19
- Address[] result = cut.all("");
+ Address[] result = cut.all();
20
// then
21
assertThat(result, notNullValue());
22
}
0 commit comments