blob: e061ecd5326d1f0d674ca5d28fd1517fbe0904f7 [file] [log] [blame]
package org.apache.maven.surefire.its;
/*
* 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 com.googlecode.junittoolbox.ParallelParameterized;
import org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase;
import org.apache.maven.surefire.its.fixture.SurefireLauncher;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized.Parameter;
import java.util.Collection;
import static java.util.Arrays.asList;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_0;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_1;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_10;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_11;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_12;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_13;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_2;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_3;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_3_1;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_4;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_5;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_6;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_7;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_8;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_8_1;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_8_2;
import static org.apache.maven.surefire.its.JUnitVersion.JUNIT_4_9;
import static org.junit.runners.Parameterized.Parameters;
/**
* Basic suite test using all known versions of JUnit 4.x
*
* @author <a href="mailto:dfabulich@apache.org">Dan Fabulich</a>
*/
@RunWith( ParallelParameterized.class )
public class JUnit4VersionsIT
extends SurefireJUnit4IntegrationTestCase
{
@Parameters( name = "{index}: JUnit {0}" )
public static Collection<Object[]> junitVersions()
{
return asList( new Object[][] {
{ JUNIT_4_0 },
{ JUNIT_4_1 },
{ JUNIT_4_2 },
{ JUNIT_4_3 },
{ JUNIT_4_3_1 },
{ JUNIT_4_4 },
{ JUNIT_4_5 },
{ JUNIT_4_6 },
{ JUNIT_4_7 },
{ JUNIT_4_8 },
{ JUNIT_4_8_1 },
{ JUNIT_4_8_2 },
{ JUNIT_4_9 },
{ JUNIT_4_10 },
{ JUNIT_4_11 },
{ JUNIT_4_12 },
{ JUNIT_4_13 }
} );
}
@Parameter
@SuppressWarnings( "checkstyle:visibilitymodifier" )
public JUnitVersion version;
@Test
public void testJunit()
{
version.configure( unpack() )
.executeTest()
.verifyErrorFree( 1 );
}
private SurefireLauncher unpack()
{
return unpack( "/junit4", version.toString() );
}
}