diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..afe803e --- /dev/null +++ b/pom.xml @@ -0,0 +1,18 @@ + + 4.0.0 + com.veritablevalor.blizliam + amazon-scrapi + jar + 1.0-SNAPSHOT + amazon-scrapi + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + diff --git a/src/main/java/com/veritablevalor/blizliam/App.java b/src/main/java/com/veritablevalor/blizliam/App.java new file mode 100644 index 0000000..c37ce66 --- /dev/null +++ b/src/main/java/com/veritablevalor/blizliam/App.java @@ -0,0 +1,13 @@ +package com.veritablevalor.blizliam; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/test/java/com/veritablevalor/blizliam/AppTest.java b/src/test/java/com/veritablevalor/blizliam/AppTest.java new file mode 100644 index 0000000..f67addb --- /dev/null +++ b/src/test/java/com/veritablevalor/blizliam/AppTest.java @@ -0,0 +1,38 @@ +package com.veritablevalor.blizliam; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +}