Dependency updates and update version number

This commit is contained in:
Kode
2018-06-13 19:35:28 +01:00
parent 18ec208381
commit e3ec7de23a
1261 changed files with 45582 additions and 29687 deletions

View 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',
),
);
],
];
}
}
}