Repository: maven-surefire Updated Branches: refs/heads/master 33a32d132 -> a9162eed5
[SUREFIRE-1291] enable unit tests in surefire-integration-tests and rename Surefire1028UnableToRunSingleTest to *IT Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/a9162eed Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/a9162eed Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/a9162eed Branch: refs/heads/master Commit: a9162eed51b0ac0017bee8144c97a290553589bf Parents: 33a32d1 Author: Tibor17 <tibo...@lycos.com> Authored: Sun Oct 2 20:42:50 2016 +0200 Committer: Tibor17 <tibo...@lycos.com> Committed: Sun Oct 2 20:42:50 2016 +0200 ---------------------------------------------------------------------- surefire-integration-tests/pom.xml | 2 +- .../jiras/Surefire1028UnableToRunSingleIT.java | 59 ++++++++++++++++++++ .../Surefire1028UnableToRunSingleTest.java | 59 -------------------- 3 files changed, 60 insertions(+), 60 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/a9162eed/surefire-integration-tests/pom.xml ---------------------------------------------------------------------- diff --git a/surefire-integration-tests/pom.xml b/surefire-integration-tests/pom.xml index 3fe4f55..43d4b0a 100644 --- a/surefire-integration-tests/pom.xml +++ b/surefire-integration-tests/pom.xml @@ -86,7 +86,7 @@ <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <skip>true</skip> + <test>*Test</test> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/a9162eed/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleIT.java ---------------------------------------------------------------------- diff --git a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleIT.java b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleIT.java new file mode 100644 index 0000000..74cb281 --- /dev/null +++ b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleIT.java @@ -0,0 +1,59 @@ +package org.apache.maven.surefire.its.jiras; + +/* + * 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.surefire.its.fixture.SurefireJUnit4IntegrationTestCase; +import org.apache.maven.surefire.its.fixture.SurefireLauncher; +import org.junit.Test; + +/** + * Plugin Configuration: parallel=classes + * <p/> + * With Surefire 2.15 + * {@code $ mvn test -Dtest=MyTest#testFoo} + * Results : + * Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 + * <p/> + * With Surefire 2.16 + * {@code $ mvn test -Dtest=MyTest#testFoo} + * <p/> + * Results : + * Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 + * + * @author <a href="mailto:tibordig...@apache.org">Tibor Digana (tibor17)</a> + * @see {@linkplain https://jira.codehaus.org/browse/SUREFIRE-1028} + * @since 2.18 + */ +public class Surefire1028UnableToRunSingleIT + extends SurefireJUnit4IntegrationTestCase +{ + + @Test + public void methodFilteringParallelExecution() + { + unpack().setTestToRun( "SomeTest#test" ).parallelClasses().useUnlimitedThreads() + .executeTest().verifyErrorFree( 1 ).verifyTextInLog( "OK!" ); + } + + private SurefireLauncher unpack() + { + return unpack( "surefire-1028-unable-to-run-single-test" ); + } +} http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/a9162eed/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleTest.java ---------------------------------------------------------------------- diff --git a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleTest.java b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleTest.java deleted file mode 100644 index ac40212..0000000 --- a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1028UnableToRunSingleTest.java +++ /dev/null @@ -1,59 +0,0 @@ -package org.apache.maven.surefire.its.jiras; - -/* - * 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.surefire.its.fixture.SurefireJUnit4IntegrationTestCase; -import org.apache.maven.surefire.its.fixture.SurefireLauncher; -import org.junit.Test; - -/** - * Plugin Configuration: parallel=classes - * <p/> - * With Surefire 2.15 - * {@code $ mvn test -Dtest=MyTest#testFoo} - * Results : - * Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 - * <p/> - * With Surefire 2.16 - * {@code $ mvn test -Dtest=MyTest#testFoo} - * <p/> - * Results : - * Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 - * - * @author <a href="mailto:tibordig...@apache.org">Tibor Digana (tibor17)</a> - * @see {@linkplain https://jira.codehaus.org/browse/SUREFIRE-1028} - * @since 2.18 - */ -public class Surefire1028UnableToRunSingleTest - extends SurefireJUnit4IntegrationTestCase -{ - - @Test - public void methodFilteringParallelExecution() - { - unpack().setTestToRun( "SomeTest#test" ).parallelClasses().useUnlimitedThreads() - .executeTest().verifyErrorFree( 1 ).verifyTextInLog( "OK!" ); - } - - private SurefireLauncher unpack() - { - return unpack( "surefire-1028-unable-to-run-single-test" ); - } -}