Skip to content
Snippets Groups Projects
Commit 802f3889 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

Just enough code to compile.

/tag No code, no tests
parent e5bdc12d
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,14 @@ ...@@ -7,6 +7,14 @@
<groupId>edu.unl.cse.csce361</groupId> <groupId>edu.unl.cse.csce361</groupId>
<artifactId>MyStack</artifactId> <artifactId>MyStack</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>
\ No newline at end of file
public class MyStack { public class MyStack {
public MyStack() {
super();
}
} }
import org.junit.After;
import org.junit.Before;
import static org.junit.Assert.*;
public class MyStackTest {
private MyStack stack;
@Before
public void setUp() {
stack = new MyStack();
}
@After
public void tearDown() {
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment