You are here

public function PHP_Token_ClassTest::testGetFunctionKeywords in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-token-stream/tests/Token/ClassTest.php \PHP_Token_ClassTest::testGetFunctionKeywords()

@covers PHP_Token_FUNCTION::getKeywords

File

vendor/phpunit/php-token-stream/tests/Token/ClassTest.php, line 55

Class

PHP_Token_ClassTest
Tests for the PHP_Token_CLASS class.

Code

public function testGetFunctionKeywords() {
  $this
    ->assertEquals('abstract,static', $this->function
    ->getKeywords());
}