JAMES-2584 Introduce a new JUnit 4 category for Cassandra/ElasticSearch tests
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/ec8efc65 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/ec8efc65 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/ec8efc65 Branch: refs/heads/master Commit: ec8efc65c96ec7c33a993b3768a70b51d3d8ac9a Parents: d9978da Author: Antoine Duprat <[email protected]> Authored: Tue Nov 6 14:59:57 2018 +0100 Committer: Antoine Duprat <[email protected]> Committed: Fri Nov 9 08:49:10 2018 +0100 ---------------------------------------------------------------------- .../CassandraAndElasticSearchCategory.java | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/ec8efc65/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/categories/CassandraAndElasticSearchCategory.java ---------------------------------------------------------------------- diff --git a/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/categories/CassandraAndElasticSearchCategory.java b/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/categories/CassandraAndElasticSearchCategory.java new file mode 100644 index 0000000..b264eeb --- /dev/null +++ b/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/categories/CassandraAndElasticSearchCategory.java @@ -0,0 +1,27 @@ +/* + * 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.jmap.categories; + +/** + * Category marker for Junit 4 conditional execution + * Marks tests that should be run only on Cassandra & ElasticSearch implementation + */ +public interface CassandraAndElasticSearchCategory { +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
