You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2017/06/27 14:53:16 UTC

[5/7] jena git commit: JENA-1367: Link in tests

JENA-1367: Link in tests

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

Branch: refs/heads/master
Commit: 0573874ec790bd52491f7dda167a4d76d6af49bb
Parents: 675b44d
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Jun 27 14:56:23 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Jun 27 14:56:23 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/jena/sparql/TC_General.java |  2 ++
 .../sparql/pfunction/library/TS_PFunction.java  | 30 ++++++++++++++++++++
 2 files changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/0573874e/jena-arq/src/test/java/org/apache/jena/sparql/TC_General.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/TC_General.java b/jena-arq/src/test/java/org/apache/jena/sparql/TC_General.java
index 68c9192..e8d46ea 100644
--- a/jena-arq/src/test/java/org/apache/jena/sparql/TC_General.java
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/TC_General.java
@@ -37,6 +37,7 @@ import org.apache.jena.sparql.lang.TS_Lang ;
 import org.apache.jena.sparql.modify.TS_Update ;
 import org.apache.jena.sparql.negation.TS_Negation ;
 import org.apache.jena.sparql.path.TS_Path ;
+import org.apache.jena.sparql.pfunction.library.TS_PFunction ;
 import org.apache.jena.sparql.resultset.TS_ResultSet ;
 import org.apache.jena.sparql.solver.TS_Solver ;
 import org.apache.jena.sparql.syntax.TS_SSE ;
@@ -57,6 +58,7 @@ import org.junit.runners.Suite ;
     
     , TS_Expr.class
     , TS_UserFunctions.class
+    , TS_PFunction.class
     
     , TS_ResultSet.class
     , TS_Engine.class

http://git-wip-us.apache.org/repos/asf/jena/blob/0573874e/jena-arq/src/test/java/org/apache/jena/sparql/pfunction/library/TS_PFunction.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/pfunction/library/TS_PFunction.java b/jena-arq/src/test/java/org/apache/jena/sparql/pfunction/library/TS_PFunction.java
new file mode 100644
index 0000000..4f3cfcc
--- /dev/null
+++ b/jena-arq/src/test/java/org/apache/jena/sparql/pfunction/library/TS_PFunction.java
@@ -0,0 +1,30 @@
+/*
+ * 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.pfunction.library;
+
+import org.junit.runner.RunWith ;
+import org.junit.runners.Suite ;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses( {
+    TestStrSplit.class
+})
+
+public class TS_PFunction {
+}