Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php')
-rw-r--r--vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php b/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php
new file mode 100644
index 0000000..3141f56
--- /dev/null
+++ b/vendor/nikic/php-parser/test/PhpParser/Node/Scalar/MagicConstTest.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace PhpParser\Node\Scalar;
+
+class MagicConstTest extends \PHPUnit_Framework_TestCase {
+ /**
+ * @dataProvider provideTestGetName
+ */
+ public function testGetName(MagicConst $magicConst, $name) {
+ $this->assertSame($name, $magicConst->getName());
+ }
+
+ public function provideTestGetName() {
+ return array(
+ array(new MagicConst\Class_, '__CLASS__'),
+ array(new MagicConst\Dir, '__DIR__'),
+ array(new MagicConst\File, '__FILE__'),
+ array(new MagicConst\Function_, '__FUNCTION__'),
+ array(new MagicConst\Line, '__LINE__'),
+ array(new MagicConst\Method, '__METHOD__'),
+ array(new MagicConst\Namespace_, '__NAMESPACE__'),
+ array(new MagicConst\Trait_, '__TRAIT__'),
+ );
+ }
+} \ No newline at end of file