@Test
public void BusinessDescriptionLangMaxLengthTest() throws DispositionReportFaultMessage, RemoteException {
System.out.println("BusinessDescriptionLangMaxLengthTest");
SaveBusiness sb = new SaveBusiness();
sb.setAuthInfo(authInfoJoe);
BusinessEntity be = new BusinessEntity();
Name n = new Name();
n.setValue("A Test business");
Description d = new Description();
d.setValue("a description");
//26
d.setLang(str26);
be.getDescription().add(d);
be.getName().add(n);
sb.getBusinessEntity().add(be);
BusinessDetail saveBusiness = publication.saveBusiness(sb);
DeleteBusiness db = new DeleteBusiness();
db.setAuthInfo(authInfoJoe);
db.getBusinessKey().add(saveBusiness.getBusinessEntity().get(0).getBusinessKey());