clunit
clunit copied to clipboard
CLUnit: A Common Lisp Unit Testing Framework.
The following does not work: ```lisp > (flet ((foo () 5)) (deftest test () (assert-equalp 5 (foo)))) ; looks for (foo) in global env > (let ((a 4)) (deftest test...
In Clozure, and perhaps other lisps (I couldn't try), the report format differs from that in the tutorial. Newlines are missing, e.g.: (cls-tests:run) # PROGRESS: ``` TESTS: (Test Suite) COMPOUND:...
https://notabug.org/cage/clunit2 http://quickdocs.org/clunit2/
The documentation here: http://tgutu.github.io/clunit/#clunit_4 describes a test case: ;; Define a test called TEST-INT1 (deftest test-int1 (IntegerSuite) (assert-true (= 1 -1)) (assert-equality 4 (+ 2 2))) that fails when run...
For programmatically inspect the test result, I would like at least one method to check the run-suite is successful or not. It could use following condition: ``` lisp (and (zerop...