欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

GrUnit:Groovy方式的单元测试工具

程序员文章站 2022-03-13 11:45:12
...

GrUnit 是一个包含在Groovy++中的小工具,是Groovy AST (abstract syntax tree)的转变,允许你做两件事:

  • writing JUnit tests a little bit less verbose
  • making tests executable as Groovy scripts

示例:

@Typed package org.mbte.groovypp.compiler

import org.codehaus.groovy.tools.FileSystemCompiler
import org.codehaus.groovy.control.CompilerConfiguration

def finder = new FileNameFinder ()

String [] names = finder.getFileNames("./StdLibTest/tests/", "**/*Test.groovy")
new FileSystemCompiler (new CompilerConfiguration()).compile (names)

执行脚本后的输出:

.

Time: 3.558

 

4.OK (1 test)


点击查看更多详情:http://groovy.dzone.com/articles/grunit-groovy-way-unit-testing
相关标签: Groovy 单元测试