Use this task to run ABLUnit tests. This task type has all the methods and properties that are in ABLRun (except procedure). Additional properties and methods are listed in the following table:

Methods

Method Description Example
exclude(String... excludes) Adds an ANT-style exclude pattern exclude('**/*.txt', '**/*.conf')
include(String... includes) Adds an ANT-style include pattern include('**/*.p', '**/*.cls')
source(String... sources)

Adds sources to this task, after the include and exclude patterns are applied.

The task is skipped if no sources are available.

source('src1', 'src2')

Properties

Property Required? Description Example Default value
outputDir No

Directory where the result file is placed.

Don't use this property under Linux, because a bug prevents results.xml from being generated

outputDir="path" "${projectDir}"