Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / CoverageFunctionTest.php
1 <?php
2 class CoverageFunctionTest extends PHPUnit_Framework_TestCase
3 {
4     /**
5      * @covers ::globalFunction
6      */
7     public function testSomething()
8     {
9         globalFunction();
10     }
11 }