在测试文件中,我需要这样的测试文件:

(ns calc.alg-spec
  (:refer-clojure)
  (:use clojure-test)
  (:require [calc.alg :as alg]))

(deftest silly-test []
  (is (= 2 2)))

(deftest alg-plus-test []
  (is (= (alg/plus 2 2) 4)))

(run-all-tests)


问题在于,第一个测试成功,而第二个测试抛出以下异常:

javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial


alg名称空间有什么问题,为什么我不能调用它的功能?

最佳答案

您的代码段没有错,问题出在其他地方。如果尚未使用Leiningen,请遵循Leiningen的约定测试代码。

08-03 12:35