Incluir um framework de teste em um projeto groovy
18/05/2016 11:10
import groovy.util.GroovyTestCase
class TDDGroovy extends GroovyTestCase{
void testListSize() {
def lst = [1, 2]
assertEquals "ArrayList size must be 2", 2, lst.size()
}
}?
Para se registrar, clique aqui.