Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
phpunit
/
phpunit
/
tests
/
Regression
/
GitHub
/
2382
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Issue2382Test.php
<?php use PHPUnit\Framework\TestCase; class Issue2382Test extends TestCase { /** * @dataProvider dataProvider */ public function testOne($test) { $this->assertInstanceOf(\Exception::class, $test); } public function dataProvider() { return [ [ $this->getMockBuilder(\Exception::class)->getMock() ] ]; } }
Save
Cancel