Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05:00

14 lines
258 B
PHP

<?php
class CoverageNothingTest extends PHPUnit_Framework_TestCase
{
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}