Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Clojure 的新手,我正在尝试编写单元测试。在 Clojure 中编写单元测试的最佳方法是什么,以及如何将定义函数的文件导入到单元测试中。
谢谢您的帮助。
首先,有clojure.test。使用Leiningen,您可以调用lein test以运行测试。
lein test
另请参阅对 BDD 有用的Speclj。
在 clojure 中进行单元测试的另一种公认方法是使用Midje。
我读过关于它的好评论。
Speclj也是一个广泛接受的 clojure 语言的测试框架,您也可以考虑使用它。在这里你可以找到关于它的强弱点的更长的讨论