You are here

NamespaceCoverageNotPrivateTest.php in Zircon Profile 8

File

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

class NamespaceCoverageNotPrivateTest extends PHPUnit_Framework_TestCase {

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

}