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