Griffon 1.2.0

org.codehaus.griffon.cli.shell.command
[Java] Class TestAppCommand

java.lang.Object
  org.codehaus.griffon.cli.shell.AbstractGriffonCommand
      org.codehaus.griffon.cli.shell.command.TestAppCommand

@Command(scope = "griffon",
        name = "test-app",
        description = "Runs the project's tests")
public class TestAppCommand
extends AbstractGriffonCommand

Authors:
Andres Almiray
Since:
0.9.5


Field Summary
private List arguments

private boolean clean

private boolean noReports

private boolean reRun

private boolean xml

 
Fields inherited from class AbstractGriffonCommand
env, nonInteractive
 
Constructor Summary
TestAppCommand()

 

Field Detail

arguments

@Argument(index = 0,
            name = "arguments",
            description = "Specifies type:phase and/or test selection.",
            required = false,
            multiValued = true)
private List arguments


clean

@Option(name = "--clean",
            description = "Cleans compiled classes before test are run.",
            required = false)
private boolean clean


noReports

@Option(name = "--no-reports",
            description = "Skips writing test reports if set to true.",
            required = false)
private boolean noReports


reRun

@Option(name = "--rerun",
            description = "Reruns failed tests only.",
            required = false)
private boolean reRun


xml

@Option(name = "--xml",
            description = "Creates test reports in XML format.",
            required = false)
private boolean xml


 
Constructor Detail

TestAppCommand

TestAppCommand()


 

Groovy Documentation