Enables or disables the stopping for incomplete tests.
@since Method available since Release 3.5.0
boolean $flag:
public function stopOnIncomplete($flag) {
if (is_bool($flag)) {
$this->stopOnIncomplete = $flag;
}
else {
throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'boolean');
}
}