assertFalse( "New property container has property [name].",
pc.containsPropertyName( "name" ));
assertTrue( "New property container list of properties not empty.",
pc.getProperties().isEmpty());
Property prop = pc.getPropertyByName( "name" );
if ( prop != null )
fail( "New property container holds unexpected property [name]/["+prop.getValue()+"].");
assertTrue( "New property container list of property names not empty.",
pc.getPropertyNames().isEmpty());
String value = pc.getPropertyValue( "name" );
if ( value != null )
fail( "New property container holds unexpected property value [name]/["+value+"].");