You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by aj...@apache.org on 2018/01/06 15:17:54 UTC

[30/44] jena git commit: Linking tests into build suite

Linking tests into build suite


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

Branch: refs/heads/master
Commit: 1579273469ea7328fc2a6c1e118bff5bde93b7d3
Parents: 0653c2c
Author: ajs6f <aj...@apache.org>
Authored: Fri Dec 29 11:33:55 2017 -0500
Committer: ajs6f <aj...@apache.org>
Committed: Fri Jan 5 09:32:55 2018 -0500

----------------------------------------------------------------------
 .../jena/query/util/TestDatasetCollector.java   |  7 +++++
 .../jena/sparql/util/TS_DatasetGraphViews.java  | 28 ++++++++++++++++++++
 .../org/apache/jena/sparql/util/TS_Util.java    |  4 +--
 3 files changed, 37 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/15792734/jena-arq/src/test/java/org/apache/jena/query/util/TestDatasetCollector.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/query/util/TestDatasetCollector.java b/jena-arq/src/test/java/org/apache/jena/query/util/TestDatasetCollector.java
new file mode 100644
index 0000000..c86ace0
--- /dev/null
+++ b/jena-arq/src/test/java/org/apache/jena/query/util/TestDatasetCollector.java
@@ -0,0 +1,7 @@
+package org.apache.jena.query.util;
+
+public class TestDatasetCollector {
+    
+    
+
+}

http://git-wip-us.apache.org/repos/asf/jena/blob/15792734/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
new file mode 100644
index 0000000..6df9e28
--- /dev/null
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_DatasetGraphViews.java
@@ -0,0 +1,28 @@
+/*
+ * 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.jena.sparql.util;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+@RunWith(Suite.class)
+@SuiteClasses({ TestIntersectionDatasetGraph.class, TestDifferenceDatasetGraph.class, TestUnionDatasetGraph.class })
+
+public class TS_DatasetGraphViews {}

http://git-wip-us.apache.org/repos/asf/jena/blob/15792734/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
index 18fd5bd..9efae91 100644
--- a/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/util/TS_Util.java
@@ -28,8 +28,8 @@ import org.junit.runners.Suite.SuiteClasses ;
     TestDateTimeParsing.class ,
     TestList.class ,
     TestDateTimeUtils.class ,
-    TestFmtUtils.class
+    TestFmtUtils.class,
+    TS_DatasetGraphViews.class
 })
-
 public class TS_Util
 { }