2016-12-19 17:24:12 -05:00
|
|
|
(defun run-unit-test (unit-test)
|
|
|
|
(cond
|
2017-02-14 15:24:38 -05:00
|
|
|
((funcall unit-test) (print (cons T unit-test)) T)
|
|
|
|
(T (print (cons 'F unit-test)) NIL)
|
2016-12-19 17:24:12 -05:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
(defun run-test-suite (test-suite)
|
|
|
|
(cond
|
|
|
|
(test-suite (cons (run-unit-test (car test-suite)) (run-test-suite (cdr test-suite))))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
(defun unit (test-suite)
|
2017-02-15 09:29:57 -05:00
|
|
|
(eval (cons 'and (run-test-suite test-suite)))
|
|
|
|
)
|
|
|
|
|
|
|
|
(defun assert= (expected actual)
|
|
|
|
(cond
|
|
|
|
((= expected actual) T)
|
|
|
|
(T (print (list expected 'is 'not actual)) nil)
|
|
|
|
)
|
2016-12-19 17:24:12 -05:00
|
|
|
)
|