unitTestIgnore Option

The unitTestIgnore method option indicates that the method is a unit test method that is ignored when the tests are run.

A possible reason for not running the test is that the unit test method is incomplete or the underlying functionality to be tested is incomplete.

The unitTestIgnore method option in the following example identifies a unit test method that is ignored when the tests are run.

multiply() unitTestIgnore; // not ready yet
begin
   calculator.add(10);
   calculator.multiply(10);
   assertEquals(calculator.getResult(), 100);
end;