- groovy.test.GroovyTestSuite
-
public class GroovyTestSuite
extends TestSuite
A TestSuite which will run a Groovy unit test case inside any Java IDE
either as a unit test case or as an application.
You can specify the GroovyUnitTest to run by running this class as an application
and specifying the script to run on the command line.
java groovy.test.GroovyTestSuite src/test/Foo.groovy
Or to run the test suite as a unit test suite in an IDE you can use
the 'test' system property to define the test script to run.
e.g. pass this into the JVM when the unit test plugin runs...
-Dtest=src/test/Foo.groovy
-
-
Field Summary
Fields
| Modifiers |
Name |
Description |
protected static String |
file |
|
protected groovy.lang.GroovyClassLoader |
loader |
|
-
Methods Summary
-
Inherited Methods Summary
Inherited Methods
| Methods inherited from class |
Name |
class TestSuite |
getName, run, toString, setName, warning, countTestCases, createTest, addTest, getTestConstructor, addTestSuite, runTest, testCount, testAt, tests, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll |
-
-
Field Detail
-
@SuppressWarnings("removal")
protected final groovy.lang.GroovyClassLoader loader
-
Method Detail
-
public void loadTestSuite()
-
public static void main(String[] args)
-
public static Test suite()
Copyright © 2003-2024 The Apache Software Foundation. All rights reserved.