12 lines
194 B
PHP
Raw Normal View History

2013-07-18 13:01:36 -05:00
<?php
class CoverageFunctionTest extends PHPUnit_Framework_TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}