-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mmcclaren
committed
Oct 3, 2018
1 parent
dac4261
commit 6d6a5f8
Showing
4 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
|
||
} |