D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Filename :
DataProviderTestDoxTest.php
back
Copy
<?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] ]; } }