clam2021/vendor/phpunit/phpunit/tests/_files/DataProviderTestDoxTest.php
2021-05-13 13:04:00 -03:00

27 lines
429 B
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]
];
}
}