This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rdf.git
commit 5652154f4cffcbc37cb17bd30b781e269dcbeabc Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 16 20:26:37 2025 -0400 Fix 'mvn clean package site' --- .../org/apache/commons/rdf/integrationtests/AllToAllTest.java | 11 +++++++---- .../commons/rdf/integrationtests/JSONLDParsingTest.java | 2 ++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java b/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java index ceed9652..38cef52b 100644 --- a/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java +++ b/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java @@ -39,6 +39,9 @@ import org.apache.commons.rdf.simple.SimpleRDF; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; +/** + * Tests {@link Graph}, {@link RDF}, {@link RDFTerm}, and more. + */ public class AllToAllTest { @SuppressWarnings("rawtypes") @@ -55,7 +58,7 @@ public class AllToAllTest { return allToAll; } - /** + /* * This test creates a {@link Graph} with the first {@link RDF}, * then inserts/queries with triples using {@link RDFTerm}s created with the * second factory. @@ -64,7 +67,7 @@ public class AllToAllTest { * Just in case. */ @MethodSource("data") - @ParameterizedTest(name = "{index}: {0}->{1}") + @ParameterizedTest(name = "{index}: {0} -> {1}") public void testAddTermsFromOtherFactory(final Class<? extends RDF> from, final Class<? extends RDF> to) throws Exception { RDF nodeFactory = from.getConstructor().newInstance(); RDF graphFactory = to.newInstance(); @@ -107,7 +110,7 @@ public class AllToAllTest { } } - /** + /* * This is a variation of {@link #testAddTermsFromOtherFactory(Class, Class)}, but here * {@link Triple} is created in the "foreign" nodeFactory before adding to * the graph. @@ -116,7 +119,7 @@ public class AllToAllTest { * Just in case. */ @MethodSource("data") - @ParameterizedTest(name = "{index}: {0}->{1}") + @ParameterizedTest(name = "{index}: {0} -> {1}") public void testAddTriplesFromOtherFactory(final Class<? extends RDF> from, final Class<? extends RDF> to) throws Exception { RDF nodeFactory = from.getConstructor().newInstance(); RDF graphFactory = to.newInstance(); diff --git a/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/JSONLDParsingTest.java b/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/JSONLDParsingTest.java index 472f483d..88043784 100644 --- a/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/JSONLDParsingTest.java +++ b/commons-rdf-integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/JSONLDParsingTest.java @@ -85,6 +85,8 @@ public class JSONLDParsingTest { /** * Pre-test that src/test/resources files are on the classpath + * + * @throws Exception Thrown on test failure. */ @BeforeEach public void checkTestResources() throws Exception {