//================================================
public void testGetProduct( )
{
try
{
ProductValue prod = _petstore.getProduct( "K9-DL-01" );
assertNotNull( "product[K9-DL-01] not found", prod );
assertEquals( "productId", "K9-DL-01", prod.getProductId( ) );
assertEquals( "name", "Dalmation", prod.getName( ) );
assertEquals( "description", "Great dog for a fire station", prod.getDescription( ) );
}
catch ( Exception e )
{
fail( "Error=" + e.toString( ) );
}