* <b>Author:</b> Mathieu Carbou (mathieu.carbou@gmail.com)
*/
public class LicenseCheckMojoTest {
@Test(expectedExceptions = MojoFailureException.class)
public void test_execution() throws Exception {
LicenseCheckMojo mojo = new LicenseCheckMojo() {
{
super.basedir = new File(".");
super.header = "src/etc/header.txt";
super.properties = new HashMap<String, String>() {
{
put("year", "2008");
put("email", "mathieu.carbou@gmail.com");
}
};
}
};
mojo.execute();
}