Methods Summary |
---|
public static void | main(java.lang.String[] args)
if (args.length == 1) {
url = new URL(args[0]);
} else {
url = new URL(new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPortAddress());
}
junit.textui.TestRunner.run(new junit.framework.TestSuite(BaseTypesInteropTestsTestCase.class));
|
protected void | setUp()
if (url == null) {
String urlStr = System.getProperty("testURL");
if (urlStr != null) {
url = new URL(urlStr);
}
}
if(url == null) {
url = new URL(new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPortAddress());
}
|
public void | test10InteropTestsPortEchoAnyURI()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.URI value = null;
value = binding.echoAnyURI(new org.apache.axis.types.URI("urn:testing"));
// TBD - validate results
|
public void | test11InteropTestsPortEchoQName()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
javax.xml.namespace.QName value = null;
value = binding.echoQName(new javax.xml.namespace.QName("http://double-double", "toil-and-trouble"));
// TBD - validate results
|
public void | test12InteropTestsPortEchoNotation()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Notation value = null;
value = binding.echoNotation(new org.apache.axis.types.Notation());
// TBD - validate results
|
public void | test13InteropTestsPortEchoLanguage()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Language value = null;
value = binding.echoLanguage(new org.apache.axis.types.Language());
// TBD - validate results
|
public void | test14InteropTestsPortEchoNMToken()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NMToken value = null;
NMToken token = new NMToken();
token.setValue("eye_am_an_en_em_tokin");
value = binding.echoNMToken(token);
assertEquals(token, value);
|
public void | test15InteropTestsPortEchoNMTokens()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NMTokens value = null;
NMTokens tokens = new NMTokens();
tokens.setValue("one two three");
value = binding.echoNMTokens(tokens);
assertEquals(tokens, value);
|
public void | test16InteropTestsPortEchoName()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Name value = null;
value = binding.echoName(new org.apache.axis.types.Name());
// TBD - validate results
|
public void | test17InteropTestsPortEchoNCName()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NCName value = null;
value = binding.echoNCName(new org.apache.axis.types.NCName());
// TBD - validate results
|
public void | test18InteropTestsPortEchoID()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Id value = null;
value = binding.echoID(new org.apache.axis.types.Id());
// TBD - validate results
|
public void | test19InteropTestsPortEchoIDREF()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.IDRef value = null;
IDRef ref = new IDRef();
ref.setValue("THX1138");
value = binding.echoIDREF(ref);
assertEquals(ref, value);
|
public void | test1InteropTestsPortEchoDouble()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
double value = -3;
value = binding.echoDouble(0);
// TBD - validate results
|
public void | test20InteropTestsPortEchoIDREFS()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.IDRefs value = null;
IDRefs refs = new IDRefs();
refs.setValue("THX1138 R2D2 C3P0");
value = binding.echoIDREFS(refs);
assertEquals(refs, value);
|
public void | test21InteropTestsPortEchoEntity()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Entity value = null;
value = binding.echoEntity(new org.apache.axis.types.Entity());
// TBD - validate results
|
public void | test22InteropTestsPortEchoEntities()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Entities value = null;
value = binding.echoEntities(new org.apache.axis.types.Entities());
// TBD - validate results
|
public void | test23InteropTestsPortEchoNonPositiveInteger()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NonPositiveInteger value = null;
value = binding.echoNonPositiveInteger(new org.apache.axis.types.NonPositiveInteger("0"));
// TBD - validate results
|
public void | test24InteropTestsPortEchoNegativeInteger()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NegativeInteger value = null;
value = binding.echoNegativeInteger(new org.apache.axis.types.NegativeInteger("-1"));
// TBD - validate results
|
public void | test25InteropTestsPortEchoLong()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
long value = -3;
value = binding.echoLong(0);
// TBD - validate results
|
public void | test26InteropTestsPortEchoInt()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
int value = -3;
value = binding.echoInt(0);
// TBD - validate results
|
public void | test27InteropTestsPortEchoShort()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
short value = -3;
value = binding.echoShort((short)0);
// TBD - validate results
|
public void | test28InteropTestsPortEchoByte()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
byte value = -3;
value = binding.echoByte((byte)0);
// TBD - validate results
|
public void | test29InteropTestsPortEchoNonNegativeInteger()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.NonNegativeInteger value = null;
value = binding.echoNonNegativeInteger(new org.apache.axis.types.NonNegativeInteger("0"));
// TBD - validate results
|
public void | test2InteropTestsPortEchoDuration()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Duration value = null;
value = binding.echoDuration(new org.apache.axis.types.Duration());
// TBD - validate results
|
public void | test30InteropTestsPortEchoUnsignedLong()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.UnsignedLong value = null;
value = binding.echoUnsignedLong(new org.apache.axis.types.UnsignedLong(0));
// TBD - validate results
|
public void | test31InteropTestsPortEchoUnsignedInt()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.UnsignedInt value = null;
value = binding.echoUnsignedInt(new org.apache.axis.types.UnsignedInt(0));
// TBD - validate results
|
public void | test32InteropTestsPortEchoUnsignedShort()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.UnsignedShort value = null;
value = binding.echoUnsignedShort(new org.apache.axis.types.UnsignedShort(0));
// TBD - validate results
|
public void | test33InteropTestsPortEchoUnsignedByte()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.UnsignedByte value = null;
value = binding.echoUnsignedByte(new org.apache.axis.types.UnsignedByte(0));
// TBD - validate results
|
public void | test34InteropTestsPortEchoPositiveInteger()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.PositiveInteger value = null;
value = binding.echoPositiveInteger(new org.apache.axis.types.PositiveInteger("1"));
// TBD - validate results
|
public void | test3InteropTestsPortEchoDateTime()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
java.util.Calendar value = null;
value = binding.echoDateTime(java.util.Calendar.getInstance());
// TBD - validate results
|
public void | test4InteropTestsPortEchoTime()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Time value = null;
value = binding.echoTime(new org.apache.axis.types.Time("15:45:45.275Z"));
// TBD - validate results
|
public void | test5InteropTestsPortEchoGYearMonth()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.YearMonth value = null;
value = binding.echoGYearMonth(new org.apache.axis.types.YearMonth(2000,1));
// TBD - validate results
|
public void | test6InteropTestsPortEchoGYear()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Year value = null;
value = binding.echoGYear(new org.apache.axis.types.Year(2000));
// TBD - validate results
|
public void | test7InteropTestsPortEchoGMonthDay()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.MonthDay value = null;
value = binding.echoGMonthDay(new org.apache.axis.types.MonthDay(1, 1));
// TBD - validate results
|
public void | test8InteropTestsPortEchoGDay()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Day value = null;
value = binding.echoGDay(new org.apache.axis.types.Day(1));
// TBD - validate results
|
public void | test9InteropTestsPortEchoGMonth()
test.wsdl.interop5.basetype.InteropTestsExpType binding;
try {
binding = new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPort(url);
}
catch (javax.xml.rpc.ServiceException jre) {
if(jre.getLinkedCause()!=null)
jre.getLinkedCause().printStackTrace();
throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
}
assertTrue("binding is null", binding != null);
// Test operation
org.apache.axis.types.Month value = null;
value = binding.echoGMonth(new org.apache.axis.types.Month(1));
// TBD - validate results
|
public void | testInteropTestsPortWSDL()
javax.xml.rpc.ServiceFactory serviceFactory = javax.xml.rpc.ServiceFactory.newInstance();
java.net.URL url = new java.net.URL(new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getInteropTestsPortAddress() + "?WSDL");
javax.xml.rpc.Service service = serviceFactory.createService(url, new test.wsdl.interop5.basetype.BaseTypesInteropTestsLocator().getServiceName());
assertTrue(service != null);
|