You are here

public static function DataProviderTest::providerMethod in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/DataProviderTest.php \DataProviderTest::providerMethod()

File

vendor/phpunit/phpunit/tests/_files/DataProviderTest.php, line 12

Class

DataProviderTest

Code

public static function providerMethod() {
  return array(
    array(
      0,
      0,
      0,
    ),
    array(
      0,
      1,
      1,
    ),
    array(
      1,
      1,
      3,
    ),
    array(
      1,
      0,
      1,
    ),
  );
}