-
Notifications
You must be signed in to change notification settings - Fork 108
Testing
Ramsey Nasser edited this page Dec 7, 2018
·
2 revisions
Arcadia includes its own internal testing framework to deal with code that runs across multiple frames, but Clojure's standard clojure.test
namespace is perfectly usable as well. Remember to bind *test-out*
to *out*
in order to see test results in the REPL and the Unity console.
(use 'clojure.test)
(binding [*test-out* *out*]
(run-tests 'your.namespace 'some.other.namespace))