public void testSimpleMaven3BuildWithArgInterceptor_ArgBuilder() throws Exception {
MavenModuleSet m = createMavenProject();
MavenInstallation mavenInstallation = configureMaven3();
m.setMaven(mavenInstallation.getName());
m.setScm(new ExtractResourceSCM(getClass().getResource("maven-multimodule-unit-failure.zip")));
m.setGoals("clean install"); // build would fail because of failing unit
// tests
// add an action to build, adding argument to skip the test execution
m.getBuildWrappersList().add(new TestMvnBuildWrapper(Arrays.asList("-DskipTests")));