Skip to content

Commit 4a6e4b7

Browse files
committed
add test packages
1 parent aa98ce9 commit 4a6e4b7

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package simplejavacalculator;
2+
3+
import static org.junit.Assert.fail;
4+
5+
import org.junit.Test;
6+
7+
public class CalculatorTest {
8+
9+
@Test
10+
public void test() {
11+
fail("Not yet implemented");
12+
}
13+
14+
}

src/simplejavacalculator/SimpleJavaCalculatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package simplejavacalculator;
22

3-
import static org.junit.Assert.*;
3+
import static org.junit.Assert.fail;
44

55
import org.junit.Test;
66

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package simplejavacalculator;
2+
3+
import static org.junit.Assert.fail;
4+
5+
import org.junit.Test;
6+
7+
public class UITest {
8+
9+
@Test
10+
public void test() {
11+
fail("Not yet implemented");
12+
}
13+
14+
}

0 commit comments

Comments
 (0)