4

如何在包装函数中执行 spec2 规范的所有测试?

前任:

class HelloWorldSpec extends Specification {

    wrapAll(example) = {
        // wrap it in a session, for example.
        with(someSession){
            example()
        }
    }

    "The 'Hello world' string" should {
      "contain 11 characters" in {
        "Hello world" must have size(11)
      }
      "start with 'Hello'" in {
        "Hello world" must startWith("Hello")
      }
      "end with 'world'" in {
        "Hello world" must endWith("world")
      }
    }
  }

因此,这 3 个测试中的每一个都应该在

与(一些会话){...

使用 ScalaTest 时,我可以用Fixture覆盖

4

1 回答 1

7

你可以使用类似的东西AroundExample

class HelloWorldSpec extends Specification with AroundExample {
  def around[T <% Result](t: =>T) = inWhateverSession(t)
  ...
}

隐式上下文对象

class HelloWorldSpec extends Specification {
  implicit object sessionContext = new Around {
    def around[T <% Result](t: =>T) = inWhateverSession(t)
  }
  ...
}

根据您需要做什么,某些 、 或 上下文(及其对应项)的组合Before可能BeforeAfterOutside合适Example

于 2012-04-18T20:50:51.190 回答