Viewing File: /usr/local/cpanel/3rdparty/wpinstaller/vendor/phpunit/phpunit/tests/_files/CoverageMethodTest.php

<?php
use PHPUnit\Framework\TestCase;

class CoverageMethodTest extends TestCase
{
    /**
     * @covers CoveredClass::publicMethod
     */
    public function testSomething()
    {
        $o = new CoveredClass;
        $o->publicMethod();
    }
}
Back to Directory File Manager