Overview
Test data plays a central role in testing. From the lowest level (method tests) to the highest (acceptance tests), a test involves input data, expected output data, and a comparison between the expected and actual output data. So testing code that contains huge amount of test data is very difficult.
JXUnit is a directory-driven testing framework based on JUnit and Quick that separates test data from test code. Thus makes test easier.
JXUnit test scripting facilitates you to edit and validate test data easilly.
JXUnit uses Quick to transform XML documents into test data.
For complete overview see:
JXUnit Primer1 ,
JXUnit Primer2 &
JXUnit Primer3.
|