public static function TestWithTest::providerMethod in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/_files/TestWithTest.php \TestWithTest::providerMethod()
File
- vendor/
phpunit/ phpunit/ tests/ _files/ TestWithTest.php, line 15
Class
Code
public static function providerMethod() {
return array(
array(
0,
0,
0,
),
array(
0,
1,
1,
),
array(
1,
1,
3,
),
array(
1,
0,
1,
),
);
}