You are here

CoverageNothingTest.php in Zircon Profile 8

File

vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php
View source
<?php

class CoverageNothingTest extends PHPUnit_Framework_TestCase {

  /**
   * @covers CoveredClass::publicMethod
   * @coversNothing
   */
  public function testSomething() {
    $o = new CoveredClass();
    $o
      ->publicMethod();
  }

}

Classes