package groovy.xml
/**
* This test uses the concise syntax to test the generation
* of SAX events using GroovyMarkup
*/
class SAXTest extends TestXmlSupport {
void testSmallTree() {
package groovy.xml
/**
* This test uses the concise syntax to test the building of
* textual markup (XML or HTML) using GroovyMarkup
*/
class MarkupTest extends TestXmlSupport {
void tes
import groovy.bugs.TestSupport
import java.util.Vector
class ForLoopTest extends GroovyTestCase {
def x
void testRange() {
x = 0
for ( i in 0..9 ) {
x = x + i
/**
Testing the notYetImplemented feature of GroovyTestCase.
Todo: testing all other features.
@author Dierk Koenig
*/
class GroovyTestCaseTest extends GroovyTestCase {
void testNotY
/**
* todo: add BreakContinueLabelWithClosureTest (when break is used to return from a Closure)
* @author Dierk Koenig
*/
class BreakContinueLabelTest extends GroovyTestCase {
void testDeclar
class GeneratorTest extends GroovyTestCase {
void testGenerator() {
def x = this.&sampleGenerator
//System.out.println("x: " + x)
def result = ''
for (i in x)