You are here

protected function PHP_CodeCoverage_TestCase::getXdebugDataForBankAccount in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-code-coverage/tests/TestCase.php \PHP_CodeCoverage_TestCase::getXdebugDataForBankAccount()
3 calls to PHP_CodeCoverage_TestCase::getXdebugDataForBankAccount()
PHP_CodeCoverage_TestCase::getCoverageForBankAccount in vendor/phpunit/php-code-coverage/tests/TestCase.php
PHP_CodeCoverage_TestCase::getCoverageForBankAccountForFirstTwoTests in vendor/phpunit/php-code-coverage/tests/TestCase.php
PHP_CodeCoverage_TestCase::getCoverageForBankAccountForLastTwoTests in vendor/phpunit/php-code-coverage/tests/TestCase.php

File

vendor/phpunit/php-code-coverage/tests/TestCase.php, line 18

Class

PHP_CodeCoverage_TestCase
Abstract base class for test case classes.

Code

protected function getXdebugDataForBankAccount() {
  return array(
    array(
      TEST_FILES_PATH . 'BankAccount.php' => array(
        8 => 1,
        9 => -2,
        13 => -1,
        14 => -1,
        15 => -1,
        16 => -1,
        18 => -1,
        22 => -1,
        24 => -1,
        25 => -2,
        29 => -1,
        31 => -1,
        32 => -2,
      ),
    ),
    array(
      TEST_FILES_PATH . 'BankAccount.php' => array(
        8 => 1,
        13 => 1,
        16 => 1,
        29 => 1,
      ),
    ),
    array(
      TEST_FILES_PATH . 'BankAccount.php' => array(
        8 => 1,
        13 => 1,
        16 => 1,
        22 => 1,
      ),
    ),
    array(
      TEST_FILES_PATH . 'BankAccount.php' => array(
        8 => 1,
        13 => 1,
        14 => 1,
        15 => 1,
        18 => 1,
        22 => 1,
        24 => 1,
        29 => 1,
        31 => 1,
      ),
    ),
  );
}