Skip to content

Commit eaf8089

Browse files
committed
Replace import org.junit.Assert.* with actual imports
1 parent aeae3eb commit eaf8089

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

app/src/test/java/io/github/yawnoc/utilities/MappyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
package io.github.yawnoc.utilities;
99

10-
import static org.junit.Assert.*;
10+
import static org.junit.Assert.assertEquals;
1111

1212
import org.junit.Test;
1313

app/src/test/java/io/github/yawnoc/utilities/StringyTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88
package io.github.yawnoc.utilities;
99

10-
import static org.junit.Assert.*;
10+
import static org.junit.Assert.assertArrayEquals;
11+
import static org.junit.Assert.assertEquals;
12+
import static org.junit.Assert.assertFalse;
13+
import static org.junit.Assert.assertTrue;
1114

1215
import org.junit.Test;
1316

app/src/test/java/io/github/yawnoc/utilities/ValueyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
package io.github.yawnoc.utilities;
99

10-
import static org.junit.Assert.*;
10+
import static org.junit.Assert.assertEquals;
1111

1212
import org.junit.Test;
1313

0 commit comments

Comments
 (0)