#ignite-128: WIP.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/a816dd40 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a816dd40 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a816dd40 Branch: refs/heads/ignite-211 Commit: a816dd407fd3b42f689eca978f583c93c87bc334 Parents: 156a997 Author: vozerov-gridgain <voze...@gridgain.com> Authored: Tue Feb 3 17:17:24 2015 +0300 Committer: vozerov-gridgain <voze...@gridgain.com> Committed: Tue Feb 3 17:17:24 2015 +0300 ---------------------------------------------------------------------- .../testsuites/IgniteRouterTestSuite.java | 41 -------------------- 1 file changed, 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a816dd40/modules/clients/src/test/java/org/apache/ignite/internal/client/router/testsuites/IgniteRouterTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/clients/src/test/java/org/apache/ignite/internal/client/router/testsuites/IgniteRouterTestSuite.java b/modules/clients/src/test/java/org/apache/ignite/internal/client/router/testsuites/IgniteRouterTestSuite.java deleted file mode 100644 index 09609f7..0000000 --- a/modules/clients/src/test/java/org/apache/ignite/internal/client/router/testsuites/IgniteRouterTestSuite.java +++ /dev/null @@ -1,41 +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.ignite.internal.client.router.testsuites; - -import junit.framework.*; -import org.apache.ignite.internal.client.router.*; - -/** - * Test suite for router tests. - */ -public class IgniteRouterTestSuite extends TestSuite { - /** - * @return Suite that contains all router tests. - */ - public static TestSuite suite() { - TestSuite suite = new TestSuite("Ignite Router Test Suite"); - - suite.addTest(new TestSuite(RouterFactorySelfTest.class)); - suite.addTest(new TestSuite(TcpRouterSelfTest.class)); - suite.addTest(new TestSuite(TcpSslRouterSelfTest.class)); - suite.addTest(new TestSuite(TcpRouterMultiNodeSelfTest.class)); -// suite.addTest(new TestSuite(ClientFailedInitSelfTest.class)); - - return suite; - } -}