public function TestWithTest::testAdd in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/_files/TestWithTest.php \TestWithTest::testAdd()
@testWith [0, 0, 0] [0, 1, 1] [1, 2, 3] [20, 22, 42]
File
- vendor/
phpunit/ phpunit/ tests/ _files/ TestWithTest.php, line 10
Class
Code
public function testAdd($a, $b, $c) {
$this
->assertEquals($c, $a + $b);
}