# ignite-140 : SpatialIndexInitiatorSelfTest was deleted as unnecessary
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/1fb0c0af Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/1fb0c0af Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/1fb0c0af Branch: refs/heads/ignite-6 Commit: 1fb0c0afd0d2a62476a19f25aaf82be5a80937f0 Parents: 091baf7 Author: Artem SHutak <ashu...@gridgain.com> Authored: Sat Jan 31 14:36:03 2015 +0300 Committer: Artem SHutak <ashu...@gridgain.com> Committed: Sat Jan 31 14:36:03 2015 +0300 ---------------------------------------------------------------------- .../h2/opt/SpatialIndexInitiatorSelfTest.java | 36 -------------------- .../IgniteH2IndexingSpiTestSuite.java | 3 -- 2 files changed, 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1fb0c0af/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorSelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorSelfTest.java deleted file mode 100644 index 43e7d57..0000000 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorSelfTest.java +++ /dev/null @@ -1,36 +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.processors.query.h2.opt; - -import junit.framework.TestCase; -import org.h2.index.*; -import org.h2.table.*; - -/** - * Test {@link org.apache.ignite.internal.processors.query.h2.opt.SpatialIndexInitiator} - */ -public class SpatialIndexInitiatorSelfTest extends TestCase { - /** - * @throws Exception If failed. - */ - public void testH2SpatialIndexCreation() throws Exception { - SpatialIndex h2SpatialIndex = SpatialIndexInitiator.createH2SpatialIndex(null, "", new IndexColumn[0], 0, 1); - - assertNotNull(h2SpatialIndex); - } -} http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1fb0c0af/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java b/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java index f9f9ec1..58f3a92 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java +++ b/modules/indexing/src/test/java/org/apache/ignite/testsuites/IgniteH2IndexingSpiTestSuite.java @@ -53,9 +53,6 @@ public class IgniteH2IndexingSpiTestSuite extends TestSuite { suite.addTestSuite(GridCacheSwapSelfTest.class); suite.addTestSuite(GridCacheOffHeapSelfTest.class); - //Geo integration - suite.addTestSuite(SpatialIndexInitiatorSelfTest.class); - return suite; } }