I am writing a series of automated end-to-end test cases that use the RestFUL API.
I have some good test scripts written in Groovy that provide the types of tests and build the confidence we need, and we look at their integration into the nightly build, and also let the QA team run them. This is a step above unit testing because we are considering complete end-to-end work processes, not atomic steps.
Currently, the output is human-readable, with each test condition printing a line that defines the test, the value to be read, and the true / false value to indicate whether the test condition passes.
I would like to wrap this in a higher level script that calls each script individually and then analyzes the outputs. I can do this quite easily, but I was wondering if the Groovy Test framework exists there, so I am not reinventing the wheel.
theCesspit
source share