I wanted to know if any one has used any tool(s) to automate the testing of webMethods Services (B2B and EAI) or created services to do the same. I am looking for some kind of tools(or create services) that will help me AUTOMATE the testing. These tools(services) should also generate reports.
Personally, I love JUnit. I automate the tests with Ant.
I have created a simple class that extends the Junit TestCase class that sets up and tears down the IS Java client connection to IS, so each test I write just has to do context.invoke on the services I want to test. I’ve been meaning to write this up with full examples, but here main bit:
Sometimes it can be a little hard to test certain services at a decent level of detail - ones that create complex documents, for example - but it’s generally extremely useful.