OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

sca-j message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Spring test client hardcoded to use the Tuscany runtime


Hi,

It appears the Spring test client is hardcoded to use the Tuscany runtime:


public class SpringTestRunner extends BaseJAXWSTestRunner {

protected static final URI DOMAIN = URI.create("default");

@Override
    public String invokeTest( String input ) throws Exception {
// TestService service = SCAClientFactory.newInstance(DOMAIN).getService(TestService.class, testConfiguration.getServiceName());
TestService service = TuscanyRuntimeBridge.instance.node.getService(TestService.class, testConfiguration.getServiceName());
return service.testIt(input);
    }
}

This should be changed to correspond to how other the other test suites (e.g. Assembly, Policy, WS) are implemented.

Jim



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]