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

12 lines
194 B
PHP

<?php
class CoverageFunctionTest extends PHPUnit_Framework_TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}