JAMES-2620 Tests classes should have a name ending by Test
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/cf32153d Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/cf32153d Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/cf32153d Branch: refs/heads/3.2.x Commit: cf32153df7a31786eb22decb9ea9f63b1988b693 Parents: 7fff79f Author: Antoine Duprat <adup...@linagora.com> Authored: Mon Dec 10 11:37:30 2018 +0100 Committer: Antoine Duprat <adup...@linagora.com> Committed: Tue Dec 11 15:36:40 2018 +0100 ---------------------------------------------------------------------- .../compilation/java-8/integration_tests.sh | 4 +- .../james/JamesDeploymentValidation.java | 53 -------------------- .../james/JamesDeploymentValidationTest.java | 53 ++++++++++++++++++++ 3 files changed, 55 insertions(+), 55 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/cf32153d/dockerfiles/compilation/java-8/integration_tests.sh ---------------------------------------------------------------------- diff --git a/dockerfiles/compilation/java-8/integration_tests.sh b/dockerfiles/compilation/java-8/integration_tests.sh index 0fab296..966e59f 100755 --- a/dockerfiles/compilation/java-8/integration_tests.sh +++ b/dockerfiles/compilation/java-8/integration_tests.sh @@ -53,5 +53,5 @@ git clone $ORIGIN/. git checkout $SHA1 -mvn -DskipTests -pl org.apache.james:apache-james-mpt-external-james -am package -mvn -Dtest=JamesDeploymentValidation -pl org.apache.james:apache-james-mpt-external-james test +mvn -DskipTests -pl org.apache.james:apache-james-mpt-external-james -am install +mvn -Dtest=JamesDeploymentValidationTest -pl org.apache.james:apache-james-mpt-external-james test http://git-wip-us.apache.org/repos/asf/james-project/blob/cf32153d/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidation.java ---------------------------------------------------------------------- diff --git a/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidation.java b/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidation.java deleted file mode 100644 index a4e5ba6..0000000 --- a/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidation.java +++ /dev/null @@ -1,53 +0,0 @@ -/**************************************************************** - * 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. * - ****************************************************************/ - -package org.apache.james.mpt.imapmailbox.external.james; - -import org.apache.james.mpt.api.ImapHostSystem; -import org.junit.After; -import org.junit.Before; - -import com.google.inject.Guice; -import com.google.inject.Injector; - -public class JamesDeploymentValidation extends DeploymentValidation { - - private ImapHostSystem system; - - @Override - @Before - public void setUp() throws Exception { - Injector injector = Guice.createInjector(new ExternalJamesModule()); - system = injector.getInstance(ImapHostSystem.class); - system.beforeTest(); - super.setUp(); - } - - @Override - protected ImapHostSystem createImapHostSystem() { - return system; - } - - @After - public void tearDown() throws Exception { - system.afterTest(); - } - - -} http://git-wip-us.apache.org/repos/asf/james-project/blob/cf32153d/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidationTest.java ---------------------------------------------------------------------- diff --git a/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidationTest.java b/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidationTest.java new file mode 100644 index 0000000..81394f6 --- /dev/null +++ b/mpt/impl/imap-mailbox/external-james/src/test/java/org/apache/james/mpt/imapmailbox/external/james/JamesDeploymentValidationTest.java @@ -0,0 +1,53 @@ +/**************************************************************** + * 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. * + ****************************************************************/ + +package org.apache.james.mpt.imapmailbox.external.james; + +import org.apache.james.mpt.api.ImapHostSystem; +import org.junit.After; +import org.junit.Before; + +import com.google.inject.Guice; +import com.google.inject.Injector; + +public class JamesDeploymentValidationTest extends DeploymentValidation { + + private ImapHostSystem system; + + @Override + @Before + public void setUp() throws Exception { + Injector injector = Guice.createInjector(new ExternalJamesModule()); + system = injector.getInstance(ImapHostSystem.class); + system.beforeTest(); + super.setUp(); + } + + @Override + protected ImapHostSystem createImapHostSystem() { + return system; + } + + @After + public void tearDown() throws Exception { + system.afterTest(); + } + + +} --------------------------------------------------------------------- To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org For additional commands, e-mail: server-dev-h...@james.apache.org