Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcclaren committed Oct 3, 2018
1 parent dac4261 commit 6d6a5f8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
Binary file added build/classes/hello.class
Binary file not shown.
Binary file added build/jar/hello.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions src/hello.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public class hello {
public static void main(String []args) {
System.out.println("hello world");
}
}
18 changes: 18 additions & 0 deletions src/hellotest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package hello;

import org.junit.Test;

import static org.junit.Assert.fail;

public class hellotest {

@Test
public void testNothing() {
}

@Test
public void testWillAlwaysFail() {
fail("An error message");
}

}

0 comments on commit 6d6a5f8

Please sign in to comment.