Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/FirstTest.php
<?php

namespace Foo\DataProviderIssue2922;

use
PHPUnit\Framework\TestCase;

/**
 * @group foo
 */
class FirstTest extends TestCase
{
   
/**
     * @dataProvider provide
     */
   
public function testFirst($x)
    {
       
$this->assertTrue(true);
    }

    public function
provide()
    {
        throw new \
Exception();
    }
}