Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
DataProviderIssue2833
📤 Upload
📝 New File
📁 New Folder
Close
Editing: FirstTest.php
<?php namespace Foo\DataProviderIssue2833; use PHPUnit\Framework\TestCase; class FirstTest extends TestCase { /** * @dataProvider provide */ public function testFirst($x) { $this->assertTrue(true); } public function provide() { SecondTest::DUMMY; return [[true]]; } }
Save
Cancel