change instance

This commit is contained in:
Taras Machyshyn
2013-11-01 13:49:54 +02:00
commit 417576fd5e
2373 changed files with 284713 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
class CoverageClassTest extends PHPUnit_Framework_TestCase
{
/**
* @covers CoveredClass
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}