@@ -238,26 +238,26 @@ void testSetDeleteGetPair() {
238238 String key = "key" ;
239239 String value = "value" ;
240240 context .addToContext (key , value );
241- assertEquals (value , context .readValueOf (key ));
241+ assertEquals (value , context .getValueOf (key ));
242242 context .deleteValuePairFromContext (key );
243- assertNull (context .readValueOf (key ));
243+ assertNull (context .getValueOf (key ));
244244 }
245245
246246 @ Test
247247 void testReadDeleteGetPair () {
248248 String key = "custom" ;
249249 String value = "_:" ;
250- assertEquals (value , this .complexContext .readValueOf (key ));
250+ assertEquals (value , this .complexContext .getValueOf (key ));
251251 this .complexContext .deleteValuePairFromContext (key );
252- assertNull (this .complexContext .readValueOf (key ));
252+ assertNull (this .complexContext .getValueOf (key ));
253253 this .complexContext .addToContext (key , value );
254- assertEquals (value , this .complexContext .readValueOf (key ));
254+ assertEquals (value , this .complexContext .getValueOf (key ));
255255 }
256256
257257 @ Test
258258 void testReadKeys () {
259259 var expected = Set .of ("custom" , "owl" , "datacite" , "xsd" , "rdfs" );
260- var given = this .complexContext .readKeys ();
260+ var given = this .complexContext .getKeys ();
261261 for (String key : expected ) {
262262 assertTrue (given .contains (key ), "Key " + key + " not found in the context" );
263263 }
@@ -268,7 +268,7 @@ void testReadKeys() {
268268 @ Test
269269 void testReadPairs () {
270270 var expected = Set .of ("custom" , "owl" , "datacite" , "xsd" , "rdfs" );
271- var given = this .complexContext .readPairs ();
271+ var given = this .complexContext .getPairs ();
272272 var keys = given .keySet ();
273273 var values = given .values ();
274274 for (String key : expected ) {
0 commit comments