A short example of its usage:
(defclass my-test (test-case) ()) (def-test-method some-test ((test my-test)) (assert-equal (whatever) (whatever-else)) (assert-false (this-is-impossible))) (textui-test-run (get-suite my-test))
The generic functions set-up and tear-down can be used to (de)initialize test case objects.
ASDF-install package (obsolete) http://files.b9.com/xlunit/xlunit-latest.tar.gz
It doesn't seem to work with CMUCL 18e, all test suites (including the one for xlunit itself) succeed with 0 tests run. Any hints?
I've confirmed that XLUnit's test suite is empty with CMUCL 18e. However, later versions of CMUCL [post-18e snapshots] work fine in my testing.
This happened in ECL 0.9i too, but in the current CVS doesn't happen. I narrowed it down to the fact that :ALLOCATION :CLASS wasn't being honored for some reason, so all of the tests were attaching themselves to uniquely allocated instances of the suite; and when the actual suite was finally run, it then thought that 0 tests were associated with it.
The Debian package in Sarge (cl-xlunit) description says this is a rewrite of XPTest. Does that mean XPTest is superceded?