You are here

public function PHP_CodeCoverageTest::testSetCheckForUnintentionallyCoveredCode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-code-coverage/tests/PHP/CodeCoverageTest.php \PHP_CodeCoverageTest::testSetCheckForUnintentionallyCoveredCode()

@covers PHP_CodeCoverage::setCheckForUnintentionallyCoveredCode

File

vendor/phpunit/php-code-coverage/tests/PHP/CodeCoverageTest.php, line 143

Class

PHP_CodeCoverageTest
Tests for the PHP_CodeCoverage class.

Code

public function testSetCheckForUnintentionallyCoveredCode() {
  $this->coverage
    ->setCheckForUnintentionallyCoveredCode(true);
  $this
    ->assertAttributeEquals(true, 'checkForUnintentionallyCoveredCode', $this->coverage);
}