在编写代码时,有时专注于单个失败的测试比在一个命名空间中运行所有测试更有效。当运行测试需要一定时间或运行测试产生大量失败时,这可能是这种情况。目前运行单个测试并使用固定设备的最佳选项是 `test-vars` 类似于
(use 'clojure.test)
(def counter (atom 0))
(defn setup [f] (swap! counter inc) (f)) ;; 一个带状态的 once 固定设备
(use-fixtures :once setup)
(deftest ex (println "counter =" @counter))
(test-vars [#'ex]) ;=> counter = 1
(test-vars [#'ex]) ;=> counter = 2
然而,这有以下问题
- 没有像运行-tests 那样的测试报告反馈(成功时没有输出)
- 需要指定变量(不是符号)并用向量包裹
*建议:* 一个新的宏 `run-test`,指定一个符号,并像 `run-tests` 一样进行相同的测试报告。用法
(use 'clojure.test)
(def counter (atom 0))
(defn setup [f] (swap! counter inc) (f)) ;; 一个带状态的 once 固定设备
(use-fixtures :once setup)
(deftest ex (println "counter =" @counter))
(run-test ex)
;=> 测试用户
;=> counter = 1
;=> 运行了 1 个包含 0 个断言的测试。
;=> 0 个失败,0 个错误。
;=> {:test 1, :pass 0, :fail 0, :error 0, :type :summary}
(run-test ex)
;=> 测试用户
;=> counter = 2
;=> 运行了 1 个包含 0 个断言的测试。
;=> 0 个失败,0 个错误。
;=> {:test 1, :pass 0, :fail 0, :error 0, :type :summary}
*补丁:* CLJ-1908-3.patch
*审核:* Alex Miller