Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / test / PhpParser / Builder / PropertyTest.php
index de8f4ce63f6261da91bb4c6fe50738172fa85c83..d7a5a70e26f494d2a45df4a0f088d2bfadb98ec4 100644 (file)
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Builder;
 
@@ -7,8 +7,9 @@ use PhpParser\Node\Expr;
 use PhpParser\Node\Name;
 use PhpParser\Node\Scalar;
 use PhpParser\Node\Stmt;
+use PHPUnit\Framework\TestCase;
 
-class PropertyTest extends \PHPUnit_Framework_TestCase
+class PropertyTest extends TestCase
 {
     public function createPropertyBuilder($name) {
         return new Property($name);
@@ -25,9 +26,9 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PRIVATE
               | Stmt\Class_::MODIFIER_STATIC,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -40,9 +41,9 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
         $this->assertEquals(
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PROTECTED,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -55,9 +56,9 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
         $this->assertEquals(
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PUBLIC,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -70,12 +71,12 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
 
         $this->assertEquals(new Stmt\Property(
             Stmt\Class_::MODIFIER_PUBLIC,
-            array(
+            [
                 new Stmt\PropertyProperty('test')
-            ),
-            array(
-                'comments' => array(new Comment\Doc('/** Test */'))
-            )
+            ],
+            [
+                'comments' => [new Comment\Doc('/** Test */')]
+            ]
         ), $node);
     }
 
@@ -92,42 +93,42 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
     }
 
     public function provideTestDefaultValues() {
-        return array(
-            array(
+        return [
+            [
                 null,
                 new Expr\ConstFetch(new Name('null'))
-            ),
-            array(
+            ],
+            [
                 true,
                 new Expr\ConstFetch(new Name('true'))
-            ),
-            array(
+            ],
+            [
                 false,
                 new Expr\ConstFetch(new Name('false'))
-            ),
-            array(
+            ],
+            [
                 31415,
                 new Scalar\LNumber(31415)
-            ),
-            array(
+            ],
+            [
                 3.1415,
                 new Scalar\DNumber(3.1415)
-            ),
-            array(
+            ],
+            [
                 'Hallo World',
                 new Scalar\String_('Hallo World')
-            ),
-            array(
-                array(1, 2, 3),
-                new Expr\Array_(array(
+            ],
+            [
+                [1, 2, 3],
+                new Expr\Array_([
                     new Expr\ArrayItem(new Scalar\LNumber(1)),
                     new Expr\ArrayItem(new Scalar\LNumber(2)),
                     new Expr\ArrayItem(new Scalar\LNumber(3)),
-                ))
-            ),
-            array(
-                array('foo' => 'bar', 'bar' => 'foo'),
-                new Expr\Array_(array(
+                ])
+            ],
+            [
+                ['foo' => 'bar', 'bar' => 'foo'],
+                new Expr\Array_([
                     new Expr\ArrayItem(
                         new Scalar\String_('bar'),
                         new Scalar\String_('foo')
@@ -136,12 +137,12 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
                         new Scalar\String_('foo'),
                         new Scalar\String_('bar')
                     ),
-                ))
-            ),
-            array(
+                ])
+            ],
+            [
                 new Scalar\MagicConst\Dir,
                 new Scalar\MagicConst\Dir
-            )
-        );
+            ]
+        ];
     }
 }