public void testNoParametersSupplied()
throws Exception
{
File testPom = new File(getBasedir(), "target/test-classes/unit/basic-"
+ "cactify-noparameters/plugin-config.xml");
CactifyWarMojo mojo = (CactifyWarMojo) lookupMojo("cactifywar",
testPom);
assertNotNull(mojo);
try
{
mojo.execute();
}
catch(MojoExecutionException mojex)
{
assertEquals("You need to specify either the [srcFile] " +
"or the [version] attribute", mojex.getMessage());