7778798081828384858687
// // Check we can set the secret property. assertEquals( "egertvsg", inner.properties().set( new URI("urn:test.secret"), "egertvsg" ).value() );
8788899091929394959697
// // Check we can get the secret property. assertEquals( "egertvsg", inner.properties().get( new URI("urn:test.secret") ).value() ); //
96979899100101102103104105106
// // Check we can set the test properties. assertEquals( "green", inner.properties().set( new URI("urn:test.frog"), "green" ).value() );
106107108109110111112113114115116
// // Check we can get the test property. assertEquals( "green", inner.properties().get( new URI("urn:test.frog") ).value() ); //
226227228229230231232233234235236
).value() ); // // Count the inner properties. for (Property p : inner.properties()) { log.debug("Inner [" + p.type() + "][" + p.value() + "]"); } //
241242243244245246247248249250251
} // // Check we get a null property. assertNull( inner.properties().get( new URI("urn:test.newt") ) ); //