1<?php 2class NamespaceCoverageClassTest extends PHPUnit_Framework_TestCase 3{ 4 /** 5 * @covers Foo\CoveredClass 6 */ 7 public function testSomething() 8 { 9 $o = new Foo\CoveredClass; 10 $o->publicMethod(); 11 } 12} 13
1<?php 2class NamespaceCoverageClassTest extends PHPUnit_Framework_TestCase 3{ 4 /** 5 * @covers Foo\CoveredClass 6 */ 7 public function testSomething() 8 { 9 $o = new Foo\CoveredClass; 10 $o->publicMethod(); 11 } 12} 13