Specs 是 Scala 编程语言的一个 BDD (行为驱动开发) 框架。
看看下面的代码:
import org.specs._ class helloWorld extends Specification { "'hello world' has 11 characters" in {} "'hello world' matches 'h.* w.*'" in {} }