Tests Get Business Detail
getBusinessDetail inquiry = new getBusinessDetail();;
BusinessDetail businessDetail = inquiry.getBusinessDetail("0076b468-eb27-42e5-ac09-9955cff462a3");
Vector businessEntityVector = businessDetail.getBusinessEntityVector();
for (int i=0; i<businessEntityVector.size(); i++) {
BusinessEntity businessEntity =
(BusinessEntity) businessEntityVector.elementAt(i);
String name = businessEntity.getNameString();
String description = businessEntity.getDefaultDescriptionString();
if (i==0) {
assertEquals ("Microsoft Corporation", name);
assertEquals ("Empowering people through great software - "+
"any time, any place and on any device is Microsofts vision. "+
"As the worldwide leader in software for personal and business "+
"computing, we strive to produce innovative products and services "+
"that meet our customer's", description);
}
}