Add ant target to install to maven, sample maven program.

This commit is contained in:
James Roseborough
2013-01-29 04:23:41 +00:00
parent 1626aad303
commit 9ffb9499e5
4 changed files with 84 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
package acme;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Skeleton unit test for App, required for maven to be used to build the app.
*/
public class AppTest
extends TestCase
{
public AppTest( String testName ) {
super( testName );
}
public static Test suite() {
return new TestSuite( AppTest.class );
}
public void testAppCanBeExecuted() {
App.main(new String[0]);
}
}