o Deleted it0048 which is superseded by ITs for MNG-848 and MNG-866

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@723983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-06 14:08:00 +00:00
parent be94ddadbe
commit 342565b269
3 changed files with 0 additions and 83 deletions

View File

@ -271,7 +271,6 @@ public class IntegrationTestSuite
suite.addTestSuite( MavenIT0052Test.class );
suite.addTestSuite( MavenIT0051Test.class );
suite.addTestSuite( MavenIT0049Test.class );
suite.addTestSuite( MavenIT0048Test.class );
suite.addTestSuite( MavenIT0047Test.class );
suite.addTestSuite( MavenIT0046Test.class );
suite.addTestSuite( MavenIT0045Test.class );

View File

@ -1,47 +0,0 @@
package org.apache.maven.it;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
public class MavenIT0048Test
extends AbstractMavenIntegrationTestCase
{
/**
* Verify that default values for mojo parameters are working (indirectly,
* by verifying that the IT mojo is functioning correctly).
*/
public void testit0048()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0048" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-file:2.1-SNAPSHOT:file" );
verifier.assertFilePresent( "target/file.txt" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}
}

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.it0048</groupId>
<artifactId>maven-it-it0048</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Maven Integration Test :: it0048</name>
<description>
Verify that default values for mojo parameters are working (indirectly,
by verifying that the IT mojo is functioning correctly).
</description>
</project>