新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Spock0.6發(fā)布Java測試框架
Spock 0.6 發(fā)布,Spock 0.6 增加對 Groovy 1.8, Groovy 2.0, and Grails 2.0 的支持,詳細(xì)的改進(jìn)記錄請看這里。

Spock 是適合 Java 和 Groovy 應(yīng)用程序的一個測試框架。示例代碼:
- import groovy.sql.Sql
- import spock.lang.*
- class DatabaseDriven extends Specification {
- @Shared sql = Sql.newInstance("jdbc:h2:mem:", "org.h2.Driver")
- // normally an external database would be used,
- // and the test data wouldn't have to be inserted here
- def setupSpec() {
- sql.execute("create table maxdata (id int primary key, a int, b int, c int)")
- sql.execute("insert into maxdata values (1, 3, 7, 7), (2, 5, 4, 5), (3, 9, 9, 9)")
- }
- def "maximum of two numbers"() {
- expect:
- Math.max(a, b) == c
- where:
- [a, b, c] << sql.rows("select a, b, c from maxdata")
- }
- }
下載地址:http://code.google.com/p/spock/downloads/list
當(dāng)前名稱:Spock0.6發(fā)布Java測試框架
轉(zhuǎn)載源于:http://m.fisionsoft.com.cn/article/cdoooji.html


咨詢
建站咨詢
