You are here

NamespaceCoveragePrivateTest.php in Zircon Profile 8

File

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

class NamespaceCoveragePrivateTest extends PHPUnit_Framework_TestCase {

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

}

Classes