Author: kmorin Date: 2009-05-19 08:39:17 +0000 (Tue, 19 May 2009) New Revision: 1433 Added: guix/trunk/guix-runtime/src/test/java/org/nuiton/guix/AppTest.java Log: Added: guix/trunk/guix-runtime/src/test/java/org/nuiton/guix/AppTest.java =================================================================== --- guix/trunk/guix-runtime/src/test/java/org/nuiton/guix/AppTest.java (rev 0) +++ guix/trunk/guix-runtime/src/test/java/org/nuiton/guix/AppTest.java 2009-05-19 08:39:17 UTC (rev 1433) @@ -0,0 +1,38 @@ +package org.nuiton.guix; + +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 ); + } +}