Github user ansell commented on a diff in the pull request: https://github.com/apache/incubator-commonsrdf/pull/25#discussion_r85234965 --- Diff: rdf4j/src/test/java/org/apache/commons/rdf/rdf4j/Rdf4JRDFTermFactoryTest.java --- @@ -18,19 +18,19 @@ package org.apache.commons.rdf.rdf4j; import org.apache.commons.rdf.api.AbstractRDFTermFactoryTest; -import org.apache.commons.rdf.api.RDFTermFactory; +import org.apache.commons.rdf.api.RDF; import org.junit.Assume; public class Rdf4JRDFTermFactoryTest extends AbstractRDFTermFactoryTest { @Override - public RDFTermFactory createFactory() { - return new RDF4JFactory(); + public RDF createFactory() { + return new RDF4J(); } @Override public void testInvalidLiteralLang() throws Exception { - Assume.assumeTrue("Sesame doesn't check Lang strings",false); + Assume.assumeTrue("RDD4J doesn't check Lang strings",false); --- End diff -- Ignoring tests it typically done with the JUnit @Ignore annotation, which is picked up as "skipped" by surefire and IDEs.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---