A new interface that all the unit tests should specify as their Category. All test classes belong to this category will be executed in the default mode.
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/de775c98 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/de775c98 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/de775c98 Branch: refs/heads/master Commit: de775c98968d508cfc4d5d119d456a05f9142788 Parents: 43597aa Author: Nirmal Fernando <[email protected]> Authored: Mon Nov 3 14:14:21 2014 +0100 Committer: Nirmal Fernando <[email protected]> Committed: Mon Nov 3 14:14:21 2014 +0100 ---------------------------------------------------------------------- .../stratos/kubernetes/client/UnitTests.java | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/de775c98/components/org.apache.stratos.kubernetes.client/src/test/java/org/apache/stratos/kubernetes/client/UnitTests.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.kubernetes.client/src/test/java/org/apache/stratos/kubernetes/client/UnitTests.java b/components/org.apache.stratos.kubernetes.client/src/test/java/org/apache/stratos/kubernetes/client/UnitTests.java new file mode 100644 index 0000000..d869a7d --- /dev/null +++ b/components/org.apache.stratos.kubernetes.client/src/test/java/org/apache/stratos/kubernetes/client/UnitTests.java @@ -0,0 +1,30 @@ +/* + * + * 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.stratos.kubernetes.client; + +import org.junit.experimental.categories.Category; + +/** + * Set {@link Category} of all Unit tests to be this class. + */ +public interface UnitTests { + +} \ No newline at end of file
