public function PHP_Token_NamespaceTest::testGetStartLineWithScopedNamespace in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/php-token-stream/tests/Token/NamespaceTest.php \PHP_Token_NamespaceTest::testGetStartLineWithScopedNamespace()
File
- vendor/
phpunit/ php-token-stream/ tests/ Token/ NamespaceTest.php, line 60
Class
- PHP_Token_NamespaceTest
- Tests for the PHP_Token_NAMESPACE class.
Code
public function testGetStartLineWithScopedNamespace() {
$tokenStream = new PHP_Token_Stream(TEST_FILES_PATH . 'classInScopedNamespace.php');
foreach ($tokenStream as $token) {
if ($token instanceof PHP_Token_NAMESPACE) {
$this
->assertSame(2, $token
->getLine());
}
}
}