Skip to content

Commit

Permalink
Put the Main class in a package, and created a stub test file.
Browse files Browse the repository at this point in the history
  • Loading branch information
NicMcPhee committed Nov 7, 2013
1 parent 8304698 commit 81b31d3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.java → src/segmentedfilesystem/Main.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package segmentedserver;
package segmentedfilesystem;

public class Main {

Expand Down
19 changes: 19 additions & 0 deletions test/segmentedfilesystem/DummyTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package segmentedfilesystem;

import static org.junit.Assert.*;

import org.junit.Test;

/**
* This is just a stub test file. You should rename it to
* something meaningful in your context and populate it with
* useful tests.
*/
public class DummyTest {

@Test
public void test() {
fail("Not yet implemented");
}

}

0 comments on commit 81b31d3

Please sign in to comment.