PHPUnit_Framework_TestResult::beStrictAboutOutputDuringTests PHP Method

beStrictAboutOutputDuringTests() public method

    public function beStrictAboutOutputDuringTests($flag)
    {
        if (!is_bool($flag)) {
            throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'boolean');
        }
        $this->beStrictAboutOutputDuringTests = $flag;
    }