You are here

CoverageMethodOneLineAnnotationTest.php in Zircon Profile 8

File

vendor/phpunit/phpunit/tests/_files/CoverageMethodOneLineAnnotationTest.php
View source
<?php

class CoverageMethodOneLineAnnotationTest extends PHPUnit_Framework_TestCase {

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

}