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/10/28 13:47:23 UTC

[23/50] [abbrv] ignite git commit: IGNITE-1203 Add Zookeeper IP Finder test suite.

IGNITE-1203 Add Zookeeper IP Finder test suite.


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

Branch: refs/heads/ignite-1537
Commit: ef785cb2cd8528ef99f101924da85837a0d5dbb2
Parents: ea63c2d
Author: Raul Kripalani <ra...@apache.org>
Authored: Mon Oct 26 16:35:29 2015 +0000
Committer: Raul Kripalani <ra...@apache.org>
Committed: Mon Oct 26 16:35:29 2015 +0000

----------------------------------------------------------------------
 .../ipfinder/zk/ZookeeperIpFinderTestSuite.java | 32 ++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/ef785cb2/modules/zookeeper/src/test/java/org/apache/ignite/spi/discovery/tcp/ipfinder/zk/ZookeeperIpFinderTestSuite.java
----------------------------------------------------------------------
diff --git a/modules/zookeeper/src/test/java/org/apache/ignite/spi/discovery/tcp/ipfinder/zk/ZookeeperIpFinderTestSuite.java b/modules/zookeeper/src/test/java/org/apache/ignite/spi/discovery/tcp/ipfinder/zk/ZookeeperIpFinderTestSuite.java
new file mode 100644
index 0000000..a5b6d8f
--- /dev/null
+++ b/modules/zookeeper/src/test/java/org/apache/ignite/spi/discovery/tcp/ipfinder/zk/ZookeeperIpFinderTestSuite.java
@@ -0,0 +1,32 @@
+/*
+ * 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.spi.discovery.tcp.ipfinder.zk;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * Zookeeper IP Finder tests.
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+    ZookeeperIpFinderTest.class
+})
+public class ZookeeperIpFinderTestSuite {
+
+}