Author: kmorin Date: 2009-04-17 13:57:30 +0000 (Fri, 17 Apr 2009) New Revision: 1331 Removed: guix/trunk/src/test/java/org/codelutin/guix/AppTest.java Modified: guix/trunk/pom.xml Log: Modified: guix/trunk/pom.xml =================================================================== --- guix/trunk/pom.xml 2009-04-17 13:57:12 UTC (rev 1330) +++ guix/trunk/pom.xml 2009-04-17 13:57:30 UTC (rev 1331) @@ -20,7 +20,8 @@ <modules> <module>guix-compiler</module> <module>guix-maven-plugin</module> - </modules> + <module>guix-test</module> + </modules> <dependencies> <dependency> @@ -164,11 +165,11 @@ <plugins> - <plugin> + <!--plugin> <groupId>org.codelutin.guix</groupId> <artifactId>guix-maven-plugin</artifactId> <version>${project.version}</version> - </plugin> + </plugin--> <!-- Always process jrst files, but only called on pre-site phase --> <plugin> @@ -257,4 +258,4 @@ </profile> </profiles> -</project> +</project> \ No newline at end of file Deleted: guix/trunk/src/test/java/org/codelutin/guix/AppTest.java =================================================================== --- guix/trunk/src/test/java/org/codelutin/guix/AppTest.java 2009-04-17 13:57:12 UTC (rev 1330) +++ guix/trunk/src/test/java/org/codelutin/guix/AppTest.java 2009-04-17 13:57:30 UTC (rev 1331) @@ -1,38 +0,0 @@ -package org.codelutin.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 ); - } -}