We are using Fitnesse for subsystem testing i.e. WCF & RESTful services. Now as writing Fitnesse test requires lot of effort, we are thinking of using SOAP UI Pro which gives this sort of facility.

We are not 100% sure how much this is useful?

Can anyone give suggestion of using SOAP UI against Fitnesse or if somebody has Pros & Cons regarding either of the thing ??

link|improve this question

61% accept rate
feedback

3 Answers

I have used SoapUI non-Pro (the free version) with very good results. The Pro version adds some simplifying features, but I didn't see anything in it that I couldn't really do myself with my own global test vars, etc. Invest a day or an afternoon and try out the free version of SoapUI, then you'll be able to make a better-informed decision.

link|improve this answer
feedback

The primary advantage to fitnesse is that it provides a visual way that you can use to work with your client to produce tests that both they and you can understand and run. If your not doing that then there is not much of an advantage to fitnesse over other tools or just writing a functional / integration tests suite with a unit testing library (please make sure to separate it from your actual unit tests if you do this).

link|improve this answer
feedback

I'm also in the process of deciding whether to use fitnesse oder SOAP UI for testing our RESTful web service.

I am currently favouring Fitnesse - I like the abstraction that a test fixture puts between the tests and the Web service (system under test):

  • changing the web service doesn't mean I have to retouch all the tests - just the fixture code. The software is relatively new, and the web service changes regularly.
  • It makes the tests readable. I can design the Test Fixture's public API together with our QA guy. So we are effectively defining a DSL together: we are defining a high level language for writing acceptance tests for our system.

I notice your question is pretty old, and that no answer has yet been accepted. Have you any more information you can add following your experiences?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.