AppTest.java
Maven 会自动生成一个 java 文件 AppTest.java。
路径为: C:\MVN\consumerBanking\src\test\java\com\companyname\bank
package com.companyname.insurance;
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 );
}
}
就这样。现在你可以看到 Maven 的强大之处。你可以用 maven 简单的命令创建任何类型的项目,并且可以启动您的开发。
- Create the test case