ExcludeFilterOptions

API Documentation:ExcludeFilterOptions

DSL object for defining a custom exclude filter that is based on regular expressions

A custom exclude filter consists of a class name filter, a method name filter and a method description filter. Only classes/methods that match all three filter expressions will be excluded. An undefined filter is treated as ".*" (match all)

Properties

PropertyDescription
className

Specifies a class name filter in the form of a regular expression.

methodDescription

Specifies a method description filter in the form of a regular expression.

methodName

Specifies a method name filter in the form of a regular expression.

Methods

No methods

Script blocks

No script blocks

Property details

String className

Specifies a class name filter in the form of a regular expression.

A class name matches when the specified expression is found somewhere in the class name

The default value is .* (matches any class name)

String methodDescription

Specifies a method description filter in the form of a regular expression.

A method description matches when the specified expression is found somewhere in the method description

The default value is .* (matches any method description)

String methodName

Specifies a method name filter in the form of a regular expression.

A method name matches when the specified expression is found somewhere in the method name

The default value is .* (matches any method name)