/**
* Tests that a GetRP request for an existing prop returns a GetRPResponse elem containing that prop.
*/
public void testGetExistingProp()
{
m_resourceContext = new SushiResourceContext();
GetResourcePropertyResponseDocument.GetResourcePropertyResponse response = getResourceProperty( SushiPropertyQNames.IKA );
XmlObject[] ebiPropElems = XmlBeanUtils.getChildElements( response, SushiPropertyQNames.IKA );
assertNotNull( ebiPropElems );
assertEquals( 1, ebiPropElems.length );
assertEquals( "mamamia", XmlBeanUtils.getValue( ebiPropElems[0] ) );