Package groovy.util
Class GroovyTestSuite
- java.lang.Object
- 
- junit.framework.TestSuite
- 
- groovy.util.GroovyTestSuite
 
 
- 
- All Implemented Interfaces:
- junit.framework.Test
 
 @Deprecated public class GroovyTestSuite extends junit.framework.TestSuite Deprecated.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.util.GroovyTestSuite src/test/Foo.groovyOr 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 SummaryFields Modifier and Type Field Description protected static StringfileDeprecated.protected GroovyClassLoaderloaderDeprecated.
 - 
Constructor SummaryConstructors Constructor Description GroovyTestSuite()Deprecated.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Classcompile(String fileName)Deprecated.voidloadTestSuite()Deprecated.static voidmain(String[] args)Deprecated.static junit.framework.Testsuite()Deprecated.
 
- 
- 
- 
Field Detail- 
fileprotected static String file Deprecated.
 - 
loaderprotected final GroovyClassLoader loader Deprecated.
 
- 
 - 
Method Detail- 
mainpublic static void main(String[] args) Deprecated.
 - 
suitepublic static junit.framework.Test suite() Deprecated.
 
- 
 
-