D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
phpunit
/
phpunit
/
tests
/
Regression
/
GitHub
/
2382
/
Filename :
Issue2382Test.php
back
Copy
<?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() ] ]; } }