Mercurial > hg > isophonics-drupal-site
diff vendor/nikic/php-parser/test/PhpParser/CommentTest.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/vendor/nikic/php-parser/test/PhpParser/CommentTest.php Fri Feb 23 15:52:07 2018 +0000 +++ b/vendor/nikic/php-parser/test/PhpParser/CommentTest.php Mon Apr 23 09:33:26 2018 +0100 @@ -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 @@ } 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 @@ * Some text. * Some more text. */' - ), - array( + ], + [ '/* Some text. Some more text. @@ -44,30 +47,30 @@ 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 +}