You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
510 B

<?php
use PHPUnit\Framework\TestCase;
class DataProviderTestDoxTest extends TestCase
{
/**
* @dataProvider provider
* @testdox Does something with
*/
public function testOne()
{
$this->assertTrue(true);
}
/**
* @dataProvider provider
*/
public function testDoesSomethingElseWith()
{
$this->assertTrue(true);
}
public function provider()
{
return [
'one' => [1],
'two' => [2]
];
}
}