You are here

public function TestWithTest::testAdd in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

TestWithTest

Code

public function testAdd($a, $b, $c) {
  $this
    ->assertEquals($c, $a + $b);
}