You are here

public function PHP_Token_NamespaceTest::testGetEndLineWithScopedNamespace in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-token-stream/tests/Token/NamespaceTest.php \PHP_Token_NamespaceTest::testGetEndLineWithScopedNamespace()

File

vendor/phpunit/php-token-stream/tests/Token/NamespaceTest.php, line 70

Class

PHP_Token_NamespaceTest
Tests for the PHP_Token_NAMESPACE class.

Code

public function testGetEndLineWithScopedNamespace() {
  $tokenStream = new PHP_Token_Stream(TEST_FILES_PATH . 'classInScopedNamespace.php');
  foreach ($tokenStream as $token) {
    if ($token instanceof PHP_Token_NAMESPACE) {
      $this
        ->assertSame(8, $token
        ->getEndLine());
    }
  }
}