You are here

public static function Framework_Constraint_JsonMatches_ErrorMessageProviderTest::translateTypeToPrefixDataprovider in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Framework/Constraint/JsonMatches/ErrorMessageProviderTest.php \Framework_Constraint_JsonMatches_ErrorMessageProviderTest::translateTypeToPrefixDataprovider()

File

vendor/phpunit/phpunit/tests/Framework/Constraint/JsonMatches/ErrorMessageProviderTest.php, line 75

Class

Framework_Constraint_JsonMatches_ErrorMessageProviderTest
@since File available since Release 3.7.0

Code

public static function translateTypeToPrefixDataprovider() {
  return array(
    'expected' => array(
      'Expected value JSON decode error - ',
      'expected',
    ),
    'actual' => array(
      'Actual value JSON decode error - ',
      'actual',
    ),
    'default' => array(
      '',
      '',
    ),
  );
}