You are here

public static function DataProviderFilterTest::falseProvider in Zircon Profile 8

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

File

vendor/phpunit/phpunit/tests/_files/DataProviderFilterTest.php, line 30

Class

DataProviderFilterTest

Code

public static function falseProvider() {
  return array(
    'false test' => array(
      false,
    ),
    'false test 2' => array(
      false,
    ),
    'other false test' => array(
      false,
    ),
    'other false test2' => array(
      false,
    ),
  );
}