assertTrue( file.indexOf( pathSep ) >= 0 );
String propertyValue = project.getProperties().getProperty( "outputProperty" );
assertNull( propertyValue );
mojo.setOutputProperty( "outputProperty" );
mojo.execute();
propertyValue = project.getProperties().getProperty( "outputProperty" );
assertNotNull( propertyValue );
}