Repository: maven-surefire Updated Branches: refs/heads/master 648c96717 -> 392f8b2f5
[SUREFIRE-1308] Move Surefire1179IT to jiras package Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/392f8b2f Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/392f8b2f Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/392f8b2f Branch: refs/heads/master Commit: 392f8b2f5d4d966d4868ccca4e40195a5154ac58 Parents: 648c967 Author: Benedikt Ritter <brit...@apache.org> Authored: Tue Nov 22 22:19:35 2016 +0100 Committer: Tibor17 <tibo...@lycos.com> Committed: Wed Nov 30 23:38:54 2016 +0100 ---------------------------------------------------------------------- .../maven/surefire/its/Surefire1179IT.java | 43 -------------------- .../surefire/its/jiras/Surefire1179IT.java | 43 ++++++++++++++++++++ 2 files changed, 43 insertions(+), 43 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/392f8b2f/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/Surefire1179IT.java ---------------------------------------------------------------------- diff --git a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/Surefire1179IT.java b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/Surefire1179IT.java deleted file mode 100644 index d29ccf9..0000000 --- a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/Surefire1179IT.java +++ /dev/null @@ -1,43 +0,0 @@ -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 org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase; -import org.apache.maven.surefire.its.fixture.SurefireLauncher; -import org.junit.Test; - -/** - * Fix for TestNG parameter -dataproviderthreadcount. - */ -public class Surefire1179IT - extends SurefireJUnit4IntegrationTestCase -{ - - @Test - public void suiteXmlForkCountTwoReuse() - { - unpack().executeTest().verifyErrorFreeLog().verifyTextInLog( " CONCURRENCY=30." ); - } - - private SurefireLauncher unpack() - { - return unpack( "surefire-1179-testng-parallel-dataprovider" ); - } -} http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/392f8b2f/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1179IT.java ---------------------------------------------------------------------- diff --git a/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1179IT.java b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1179IT.java new file mode 100644 index 0000000..e4e8e31 --- /dev/null +++ b/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1179IT.java @@ -0,0 +1,43 @@ +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; + +/** + * Fix for TestNG parameter -dataproviderthreadcount. + */ +public class Surefire1179IT + extends SurefireJUnit4IntegrationTestCase +{ + + @Test + public void suiteXmlForkCountTwoReuse() + { + unpack().executeTest().verifyErrorFreeLog().verifyTextInLog( " CONCURRENCY=30." ); + } + + private SurefireLauncher unpack() + { + return unpack( "surefire-1179-testng-parallel-dataprovider" ); + } +}