You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/06 11:05:38 UTC

incubator-ignite git commit: ignite-648: add multi jvm test suite

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-648 0d2deaaa1 -> fe0ce9502


ignite-648: add multi jvm test suite


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/fe0ce950
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/fe0ce950
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/fe0ce950

Branch: refs/heads/ignite-648
Commit: fe0ce95020dbd3839f03e779151ca0027fc0634b
Parents: 0d2deaa
Author: Artem Shutak <as...@gridgain.com>
Authored: Tue May 5 19:57:24 2015 +0300
Committer: Artem Shutak <as...@gridgain.com>
Committed: Tue May 5 19:57:24 2015 +0300

----------------------------------------------------------------------
 .../testsuites/IgniteMultiJvmTestSuite.java     | 37 ++++++++++++++++++++
 1 file changed, 37 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/fe0ce950/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteMultiJvmTestSuite.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteMultiJvmTestSuite.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteMultiJvmTestSuite.java
new file mode 100644
index 0000000..eaacb5a
--- /dev/null
+++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteMultiJvmTestSuite.java
@@ -0,0 +1,37 @@
+/*
+ * 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.ignite.testsuites;
+
+import junit.framework.*;
+
+/**
+ * Multi jvm test suite.
+ */
+public class IgniteMultiJvmTestSuite extends TestSuite {
+    /**
+     * @return Multi JVM tests suite.
+     * @throws Exception If failed.
+     */
+    public static TestSuite suite() throws Exception {
+        TestSuite suite = new TestSuite("Ignite Multi JVM Test Suite");
+
+        suite.addTest(new TestSuite(IgniteMultiJvmTestSuite.class));
+
+        return suite;
+    }
+}