12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
class CoverageFunctionTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers ::globalFunction
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
globalFunction();
|
|
}
|
|
}
|