Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
📤 Upload
📝 New File
📁 New Folder
Close
Editing: DataProviderTestDoxTest.php
<?php class DataProviderTestDoxTest extends PHPUnit_Framework_TestCase { /** * @dataProvider provider * @testdox Does something with */ public function testOne() { } /** * @dataProvider provider */ public function testDoesSomethingElseWith() { } public function provider() { return [ 'one' => [1], 'two' => [2] ]; } }
Save
Cancel