- 授权协议: MIT
- 开发语言: Scala
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/specs/
- 软件文档: http://code.google.com/p/specs/w/list
软件介绍
Specs 是 Scala 编程语言的一个 BDD (行为驱动开发) 框架。
看看下面的代码:
import org.specs._
class helloWorld extends Specification {
"'hello world' has 11 characters" in {}
"'hello world' matches 'h.* w.*'" in {}
}
