You are here

CoveragePrivateTest.php in Zircon Profile 8

File

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

class CoveragePrivateTest extends PHPUnit_Framework_TestCase {

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

}

Classes