Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / test / PhpParser / CommentTest.php
index 081dd57b7f4665b739fbc00c5f62fccaeabe9511..7b6c2aabe9af015ddd63139590db6fc9f5891672 100644 (file)
@@ -1,16 +1,19 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser;
 
-class CommentTest extends \PHPUnit_Framework_TestCase
+use PHPUnit\Framework\TestCase;
+
+class CommentTest extends TestCase
 {
     public function testGetSet() {
-        $comment = new Comment('/* Some comment */', 1, 10);
+        $comment = new Comment('/* Some comment */', 1, 10, 2);
 
         $this->assertSame('/* Some comment */', $comment->getText());
         $this->assertSame('/* Some comment */', (string) $comment);
         $this->assertSame(1, $comment->getLine());
         $this->assertSame(10, $comment->getFilePos());
+        $this->assertSame(2, $comment->getTokenPos());
     }
 
     /**
@@ -22,10 +25,10 @@ class CommentTest extends \PHPUnit_Framework_TestCase
     }
 
     public function provideTestReformatting() {
-        return array(
-            array('// Some text' . "\n", '// Some text'),
-            array('/* Some text */', '/* Some text */'),
-            array(
+        return [
+            ['// Some text' . "\n", '// Some text'],
+            ['/* Some text */', '/* Some text */'],
+            [
                 '/**
      * Some text.
      * Some more text.
@@ -34,8 +37,8 @@ class CommentTest extends \PHPUnit_Framework_TestCase
  * Some text.
  * Some more text.
  */'
-            ),
-            array(
+            ],
+            [
                 '/*
         Some text.
         Some more text.
@@ -44,30 +47,30 @@ class CommentTest extends \PHPUnit_Framework_TestCase
     Some text.
     Some more text.
 */'
-            ),
-            array(
+            ],
+            [
                 '/* Some text.
        More text.
        Even more text. */',
                 '/* Some text.
    More text.
    Even more text. */'
-            ),
-            array(
+            ],
+            [
                 '/* Some text.
        More text.
          Indented text. */',
                 '/* Some text.
    More text.
      Indented text. */',
-            ),
+            ],
             // invalid comment -> no reformatting
-            array(
+            [
                 'hallo
     world',
                 'hallo
     world',
-            ),
-        );
+            ],
+        ];
     }
-}
\ No newline at end of file
+}