Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
has junit 4 library and mockguitests
  • Loading branch information
ssl10003 committed Apr 28, 2015
1 parent 1edbead commit e45cff6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .classpath
Expand Up @@ -2,5 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>
14 changes: 14 additions & 0 deletions src/MockGuiTests.java
@@ -0,0 +1,14 @@
import static org.junit.Assert.*;

import org.junit.Test;
import junit.framework.TestCase;

public class MockGuiTests extends TestCase{

@Test
public void test() {

assertEquals(1,1);
}

}

0 comments on commit e45cff6

Please sign in to comment.