You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2019/12/26 12:19:04 UTC

[ignite] 01/01: IGNITE-12259 Add testsuite after rename.

This is an automated email from the ASF dual-hosted git repository.

ilyak pushed a commit to branch ignite-12259
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 58a4322c4f15637cff3acb10fbeecdaefc5db902
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Thu Dec 26 15:17:11 2019 +0300

    IGNITE-12259 Add testsuite after rename.
---
 .../testsuites/IgniteSpringData22TestSuite.java    | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData22TestSuite.java b/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData22TestSuite.java
new file mode 100644
index 0000000..560df42
--- /dev/null
+++ b/modules/spring-data-2.2/src/test/java/org/apache/ignite/testsuites/IgniteSpringData22TestSuite.java
@@ -0,0 +1,34 @@
+/*
+ * 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 org.apache.ignite.springdata.IgniteSpringDataCrudSelfTest;
+import org.apache.ignite.springdata.IgniteSpringDataQueriesSelfTest;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * Ignite Spring Data 2.2 test suite.
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+    IgniteSpringDataCrudSelfTest.class,
+    IgniteSpringDataQueriesSelfTest.class
+})
+public class IgniteSpringData22TestSuite {
+}