You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2016/11/04 00:56:31 UTC

[2/3] incubator-commonsrdf git commit: RDF4J Dataset test

RDF4J Dataset test


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/1f1f45ee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/1f1f45ee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/1f1f45ee

Branch: refs/heads/master
Commit: 1f1f45ee7b99ea13126e563524e75e68c95ebdbd
Parents: 16c585c
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Fri Nov 4 00:55:46 2016 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Fri Nov 4 00:55:46 2016 +0000

----------------------------------------------------------------------
 .../apache/commons/rdf/rdf4j/DatasetTest.java   | 30 ++++++++++++++++++++
 1 file changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1f1f45ee/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/DatasetTest.java
----------------------------------------------------------------------
diff --git a/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/DatasetTest.java b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/DatasetTest.java
new file mode 100644
index 0000000..6008bd0
--- /dev/null
+++ b/rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/DatasetTest.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.commons.rdf.rdf4j;
+
+import org.apache.commons.rdf.api.AbstractDatasetTest;
+import org.apache.commons.rdf.api.RDF;
+
+public class DatasetTest extends AbstractDatasetTest {
+
+    @Override
+    public RDF createFactory() {
+        return new RDF4J();
+    }
+
+}