# ignite-140 : renaming SpatialIndexInitiatorTest -> SpatialIndexInitiatorSelfTest
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/8d7db1ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/8d7db1ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/8d7db1ef Branch: refs/heads/ignite-6 Commit: 8d7db1ef3e1de4736625a01cbdd674d1f8f64cee Parents: e6c21ab Author: Artem SHutak <ashu...@gridgain.com> Authored: Fri Jan 30 15:24:30 2015 +0300 Committer: Artem SHutak <ashu...@gridgain.com> Committed: Fri Jan 30 15:24:30 2015 +0300 ---------------------------------------------------------------------- .../h2/opt/SpatialIndexInitiatorSelfTest.java | 36 ++++++++++++++++++++ .../query/h2/opt/SpatialIndexInitiatorTest.java | 36 -------------------- 2 files changed, 36 insertions(+), 36 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8d7db1ef/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 new file mode 100644 index 0000000..43e7d57 --- /dev/null +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorSelfTest.java @@ -0,0 +1,36 @@ +/* + * 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/8d7db1ef/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorTest.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorTest.java deleted file mode 100644 index dcb26b0..0000000 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/opt/SpatialIndexInitiatorTest.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 SpatialIndexInitiatorTest extends TestCase { - /** - * @throws Exception If failed. - */ - public void testH2SpatialIndexCreation() throws Exception { - SpatialIndex h2SpatialIndex = SpatialIndexInitiator.createH2SpatialIndex(null, "", new IndexColumn[0], 0, 1); - - assertNotNull(h2SpatialIndex); - } -}