You are here

public function Util_TestTest::testFunctionParenthesesAreAllowedWithWhitespace in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Util/TestTest.php \Util_TestTest::testFunctionParenthesesAreAllowedWithWhitespace()

@covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed

File

vendor/phpunit/phpunit/tests/Util/TestTest.php, line 510

Class

Util_TestTest
@since Class available since Release 3.3.6

Code

public function testFunctionParenthesesAreAllowedWithWhitespace() {
  $this
    ->assertSame(array(
    TEST_FILES_PATH . 'CoveredFunction.php' => range(2, 4),
  ), PHPUnit_Util_Test::getLinesToBeCovered('CoverageFunctionParenthesesWhitespaceTest', 'testSomething'));
}