Forum Discussion
SmartBear_Suppo
Alumni
17 years agoHi!
easiest in your scenario might be to manually start the mockservice in your setup method(s) and stop it in the tearDown? ie in setup
WsdlProject project = new WsdlProject( "pathtoprojectfile")
WsdlMockService mockService = project.getMockServiceByName( ... )
mockRunner = mockService.start()
and then in tearDown
mockRunner.stop()
Is that an option?
regards!
/Ole
eviware.com
easiest in your scenario might be to manually start the mockservice in your setup method(s) and stop it in the tearDown? ie in setup
WsdlProject project = new WsdlProject( "pathtoprojectfile")
WsdlMockService mockService = project.getMockServiceByName( ... )
mockRunner = mockService.start()
and then in tearDown
mockRunner.stop()
Is that an option?
regards!
/Ole
eviware.com