404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.142.55.62: ~ $
<?php

declare(strict_types=1);

namespace Tests\Printer;

use PHPUnit\Framework\TestCase;

class DatasetsTest extends TestCase
{
    public function provideData(): array
    {
        return [
            'a' => ['Foo'],
            'b' => ['Bar'],
        ];
    }

    /**
     * @dataProvider provideData
     */
    public function testWithOutput(string $data)
    {
        echo $data;

        $this->assertTrue(true);
    }
}

Filemanager

Name Type Size Permission Actions
DatasetsTest.php File 462 B 0644