testSkipped

testSkipped(testMethodName: String);

When unit tests are run, all of the test methods for each class in a collection of JadeTestCase subclasses are executed, apart from those methods that have unitTestIgnore method parameter, which are skipped.

A typical reason for skipping a test is that the functionality to be tested has not yet been completed.

The testSkipped event occurs for each test method from a JadeTestCase class that is skipped. The testSkipped callback method is then invoked for the test listener object, if it exists.

The testMethodName parameter is the fully qualified name of the skipped method in the following format.

schema-name::class-name::method-name

For details about running unit tests, see "Using the JADE Testing Framework", in Chapter 17 of the JADE Developer’s Reference.