//================================================
public void testGetCategory( )
{
try
{
CategoryValue cat = _petstore.getCategory( "FISH" );
assertNotNull( "category[FISH] not found", cat );
assertEquals( "categoryId", "FISH", cat.getCategoryId( ) );
assertEquals( "name", "Fish", cat.getName( ) );
assertEquals( "description", "description of FISH", cat.getDescription( ) );
}
catch ( Exception e )
{
fail( "Error=" + e.toString( ) );
}