在我的 Clojure 代码库中,我定义了几个协议和几个 defrecords。我正在使用 clojure.test 对我的 defrecords 中定义的具体函数进行单元测试。
例如,假设我有以下源文件:
在 src/foo/protocols.clj 中:
(ns foo.protocols)
(defprotocol RequestAcceptability
(desired-accepted-charset [this]))
在 src/foo/types.clj 中:
(ns foo.types
(:use [foo.protocols :only [RequestAcceptability desired-accepted-charset]])
(defrecord RequestProcessor
[field-1 field-2]
RequestAcceptability
(desired-accepted-charset [this]
...implementation here...))
在 test/foo/types_test.clj 中:
(ns foo.types-test
(:use [clojure.test])
(:use [foo.protocols :only [RequestAcceptability desired-accepted-charset]])
(:import [foo.types RequestProcessor]))
(deftest test-desired-accepted-charset_1
...test code here...)
我在 Emacs 中使用 Clojure 1.4、Leiningen 2、nrepl。
我面临的烦恼是,当我去运行我的单元测试(例如,使用 Cc C-,序列)时,我得到一个ClassNotFoundException: foo.types.RequestProcessor。为了解决这个问题,我正在做手动工作,分别评估我的每个协议和 defrecord 表单。即,我将导航到我的protocols.clj 并评估(nrepl 的CMx 键序列)我的defprotocol 表单;然后我将导航到我的 types.clj 并评估我的 defrecord 表单;然后最后我能够成功运行我的单元测试,而不会得到 ClassNotFoundException。
当然,在我的真实代码库中,我必须对所有协议和 defrecords 执行此操作,因此非常繁琐且耗时。此外,如果我只是简单地放入一个 shell 并执行lein test,我会得到相同的 ClassNotFoundException。
有没有更好的办法?
感谢您的时间和帮助。