Class BaseTest
java.lang.Object
org.apache.tools.ant.taskdefs.optional.junit.BaseTest
Baseclass for BatchTest and JUnitTest.
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddFormatter(FormatterElement elem) Allow a formatter nested element.Get the failure property name.Get the failure property name.booleanGet the filtertrace attribute.booleangetFork()Get the fork attribute.booleanGet the haltonerror attribute.booleanGet the haltonfailure attribute.The if expressiongetTodir()Get the destination directory.The unless expressionbooleanvoidsetErrorProperty(String errorProperty) Set the name of the error property.voidsetFailureProperty(String failureProperty) Set the name of the failure property.voidsetFiltertrace(boolean value) Set the filtertrace attribute.voidsetFork(boolean value) Set the fork attribute.voidsetHaltonerror(boolean value) Set the haltonerror attribute.voidsetHaltonfailure(boolean value) Set the haltonfailure attribute.voidSet the if attribute.voidSet the if attribute.voidsetSkipNonTests(boolean skipNonTests) voidSets the destination directory.voidSet the unless attribute.voidSet the unless attribute.
- 
Field Details- 
haltOnErrorprotected boolean haltOnError
- 
haltOnFailprotected boolean haltOnFail
- 
filtertraceprotected boolean filtertrace
- 
forkprotected boolean fork
- 
ifProperty
- 
unlessProperty
- 
formatters
- 
destDirdestination directory
- 
failureProperty
- 
errorProperty
 
- 
- 
Constructor Details- 
BaseTestpublic BaseTest()
 
- 
- 
Method Details- 
setFiltertracepublic void setFiltertrace(boolean value) Set the filtertrace attribute.- Parameters:
- value- a- booleanvalue.
 
- 
getFiltertracepublic boolean getFiltertrace()Get the filtertrace attribute.- Returns:
- the attribute.
 
- 
setForkpublic void setFork(boolean value) Set the fork attribute.- Parameters:
- value- a- booleanvalue.
 
- 
getForkpublic boolean getFork()Get the fork attribute.- Returns:
- the attribute.
 
- 
setHaltonerrorpublic void setHaltonerror(boolean value) Set the haltonerror attribute.- Parameters:
- value- a- booleanvalue.
 
- 
setHaltonfailurepublic void setHaltonfailure(boolean value) Set the haltonfailure attribute.- Parameters:
- value- a- booleanvalue.
 
- 
getHaltonerrorpublic boolean getHaltonerror()Get the haltonerror attribute.- Returns:
- the attribute.
 
- 
getHaltonfailurepublic boolean getHaltonfailure()Get the haltonfailure attribute.- Returns:
- the attribute.
 
- 
setIfSet the if attribute. If this expression evaluates to true or the name of a property which is present in project, the test will be run.- Parameters:
- ifCondition- the expression to evaluate
- Since:
- Ant 1.8.0
 
- 
setIfSet the if attribute. If this expression evaluates to true or the name of a property which is present in project, the test will be run.- Parameters:
- propertyName- the expression to evaluate
 
- 
getIfConditionThe if expression- Returns:
- Object
- Since:
- Ant 1.8.0
 
- 
setUnlessSet the unless attribute. If this expression evaluates to false or the name of a property which is not present in project, the test will be run.- Parameters:
- unlessCondition- the expression to evaluate
- Since:
- Ant 1.8.0
 
- 
setUnlessSet the unless attribute. If this expression evaluates to false or the name of a property which is not present in project, the test will be run.- Parameters:
- propertyName- the expression to evaluate
 
- 
getUnlessConditionThe unless expression- Returns:
- Object
- Since:
- Ant 1.8.0
 
- 
addFormatterAllow a formatter nested element.- Parameters:
- elem- a formatter nested element.
 
- 
setTodirSets the destination directory.- Parameters:
- destDir- the destination directory.
 
- 
getTodirGet the destination directory.- Returns:
- the destination directory as an absolute path if it exists
         otherwise return null
 
- 
getFailurePropertyGet the failure property name.- Returns:
- the name of the property to set on failure.
 
- 
setFailurePropertySet the name of the failure property.- Parameters:
- failureProperty- the name of the property to set if the test fails.
 
- 
getErrorPropertyGet the failure property name.- Returns:
- the name of the property to set on failure.
 
- 
setErrorPropertySet the name of the error property.- Parameters:
- errorProperty- the name of the property to set if the test has an error.
 
- 
setSkipNonTestspublic void setSkipNonTests(boolean skipNonTests) 
- 
isSkipNonTestspublic boolean isSkipNonTests()
 
-