rvesse commented on code in PR #2401:
URL: https://github.com/apache/jena/pull/2401#discussion_r1570415180


##########
jena-arq/src/test/java/org/apache/jena/riot/TestRDFParser.java:
##########
@@ -265,11 +296,34 @@ public void parser_fragment() {
 
     private void testNormalization(String input, String output, 
RDFParserBuilder builder) {
         Graph graph = GraphFactory.createGraphMem();
-        String x = PREFIX+":s :p "+input;
+        String x = PREFIX + ":s :p " + input;
         builder.source(new StringReader(x)).parse(graph);
         assertEquals(1, graph.size());
         Node objExpected = SSE.parseNode(output);
         Node objObtained = graph.find(s, p, null).next().getObject();
         assertEquals(objExpected, objObtained);
     }
+
+    @Test

Review Comment:
   Added tests around this



##########
jena-arq/src/test/java/org/apache/jena/riot/TestRDFParser.java:
##########
@@ -51,44 +54,64 @@ public class TestRDFParser {
     private static String DIR = "testing/RIOT/Parser/";
     private static String testdata = "@prefix : <http://example/ns#> . :x :x 
_:b .";
 
-    @Test public void source_not_uri_01() {
+    private static String testLarge;
+
+    private static long LARGE_SIZE = 100_000;
+
+    static {

Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to