我有一个帮助器类,可以创建另一个类的实例
class TestEnv {
val questionsController = new QuestionsController(...)
}
我正在进行单元测试QuestionsController
,并创建了一个基本的测试用例
class QuestionsControllerUnitSpec extends PlaySpec with BeforeAndAfterAll with BeforeAndAfterEach with OneAppPerSuiteWithComponents{
override def beforeEach() = {
println("------------new test -----------------")
}
override def components: BuiltInComponents = new BuiltInComponentsFromContext(context) with NoHttpFiltersComponents {
import play.api.mvc.Results
import play.api.routing.Router
import play.api.routing.sird._
lazy val router: Router = Router.from({
case GET(p"/") => defaultActionBuilder {
Results.Ok("success!")
}
})
}
"Question Controller " should {
"be created" in {
val testEnv = new TestEnv(components = components)
val qc:QuestionsController = testEnv.questionsController
qc mustBe defined //I get compilation error
}
}
}
我收到以下编译错误
Error:(52, 10) could not find implicit value for parameter definition: org.scalatest.enablers.Definition[controllers.QuestionsController]
qc mustBe defined
Error:(52, 10) not enough arguments for method mustBe: (implicit definition: org.scalatest.enablers.Definition[controllers.QuestionsController])org.scalatest.Assertion.
Unspecified value parameter definition.
qc mustBe defined
我检查了mustBe
中MustMatchers.class
的定义。它定义为def mustBe(right : org.scalatest.words.DefinedWord)(implicit definition : org.scalatest.enablers.Definition[T]) : org.scalatest.Assertion = { /* compiled code */ }
我为什么会收到错误消息。
答案 0 :(得分:0)
如果可以提供更准确的答案,我很乐意接受其他答案。我想我正在测试错误的东西。我在做什么类似于声明一个整数并检查该整数是否存在!相反,我应该检查整数的值。
关于matchers
,更多信息位于http://doc.scalatest.org/3.0.1/#org.scalatest.MustMatchers。有关Definition
的更多信息,请访问http://doc.scalatest.org/3.0.1/#org.scalatest.enablers.Definition
答案 1 :(得分:0)
defined
特征的隐式实现,则 Definition
匹配器语法可以与用户定义的类型一起使用。例如,假设我们有一个用户定义的类
class Foo {
val bar = 3
}
我们提供了隐式定义
implicit val fooDefinition = new Definition[Foo] {
override def isDefined(foo: Foo): Boolean = foo.bar != null
}
然后我们可以使用defined
语法
(new Foo()) mustBe defined
如果提供了类似的Definition[QuestionsController]
隐式实现,则应该解决编译器错误。