public function DataProviderTest::testAdd in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/_files/DataProviderTest.php \DataProviderTest::testAdd()
@dataProvider providerMethod
File
- vendor/
phpunit/ phpunit/ tests/ _files/ DataProviderTest.php, line 7
Class
Code
public function testAdd($a, $b, $c) {
$this
->assertEquals($c, $a + $b);
}