I am new to FitNesse acceptance testing. My requirement is to test a SOAP web service with FitNesse. I installed fitnesse-standalone.jar
and am able to run simple calculation tests.
I read that by using hsac-fitnesse-fixtures
, we can test the SOAP web services.
I‘ve downloaded the hsac-fitnesse-fixtures-2.7.0.jar
. I don't where should I place the .jar
file in my existing FitNesse software folder? I tried creating a folder with fixtures inside FitnesseRoot
and placing the hsac-fitnesse-fixtures-2.7.0.jar
inside of it.
I wrote a script, but it's not working:
!define TEST_SYSTEM {slim}
!path C:/Fitnesse/fitnesse-standalone.jar
!path fixtures/*.jar
!path
C:/Fitnesse/FitnesseRoot/fixtures/hsac-fitnesse-fixtures-2.7.0.jar
!path fixtures/*
|Import|
| nl.hsac.fitnesse.fixture.slim|
!|XmlHttpTest |
|script|xml http test |
|post |mypostbody |
|to |myserviceurl |
|check |response|status|200|
|show |response |
What is the working code/script to test SOAP web services using hsac-fitnesse-fixtures
?