You are here

CoverageFunctionTest.php in Zircon Profile 8

File

vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php
View source
<?php

class CoverageFunctionTest extends PHPUnit_Framework_TestCase {

  /**
   * @covers ::globalFunction
   */
  public function testSomething() {
    globalFunction();
  }

}

Classes