@@ -233,28 +233,28 @@ void testSetDeleteGetPair() {
233233 String key = "key" ;
234234 String value = "value" ;
235235 context .addToContext (key , value );
236- assertEquals (value , context .getValueOf (key ));
236+ assertEquals (value , context .readValueOf (key ));
237237 context .deleteValuePairFromContext (key );
238- assertNull (context .getValueOf (key ));
238+ assertNull (context .readValueOf (key ));
239239 }
240240
241241 @ Test
242242 void testReadDeleteGetPair () throws IOException {
243243 setupComplexContext ();
244244 String key = "custom" ;
245245 String value = "_:" ;
246- assertEquals (value , context .getValueOf (key ));
246+ assertEquals (value , context .readValueOf (key ));
247247 context .deleteValuePairFromContext (key );
248- assertNull (context .getValueOf (key ));
248+ assertNull (context .readValueOf (key ));
249249 context .addToContext (key , value );
250- assertEquals (value , context .getValueOf (key ));
250+ assertEquals (value , context .readValueOf (key ));
251251 }
252252
253253 @ Test
254254 void testReadKeys () throws IOException {
255255 setupComplexContext ();
256256 var expected = Set .of ("custom" , "owl" , "datacite" , "xsd" , "rdfs" );
257- var given = context .getImmutableKeys ();
257+ var given = context .readKeys ();
258258 for (String key : expected ) {
259259 assertTrue (given .contains (key ), "Key " + key + " not found in the context" );
260260 }
@@ -264,7 +264,7 @@ void testReadKeys() throws IOException {
264264 void testReadPairs () throws IOException {
265265 setupComplexContext ();
266266 var expected = Set .of ("custom" , "owl" , "datacite" , "xsd" , "rdfs" );
267- var given = context .getImmutablePairs ();
267+ var given = context .readPairs ();
268268 var keys = given .keySet ();
269269 var values = given .values ();
270270 for (String key : expected ) {
0 commit comments