initial commit

This commit is contained in:
SENG302
2016-02-29 07:35:27 +13:00
commit 9649f67863
9 changed files with 369 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package seng302;
public class App
{
public static void main( String[] args )
{
System.out.println( "Welcome to SENG302" );
}
}
+16
View File
@@ -0,0 +1,16 @@
package seng302;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
/**
* Unit test for simple App.
*/
public class AppTest
{
@Test
public void testApp()
{
assertTrue( true );
}
}