X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FAutoloaderTest.php;fp=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FAutoloaderTest.php;h=8eeded839bf3c6e6a662815186c1e75840dbc7c1;hp=0000000000000000000000000000000000000000;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/nikic/php-parser/test/PhpParser/AutoloaderTest.php b/vendor/nikic/php-parser/test/PhpParser/AutoloaderTest.php new file mode 100644 index 000000000..8eeded839 --- /dev/null +++ b/vendor/nikic/php-parser/test/PhpParser/AutoloaderTest.php @@ -0,0 +1,15 @@ +assertTrue(class_exists('PhpParser\NodeVisitorAbstract')); + $this->assertFalse(class_exists('PHPParser_NodeVisitor_NameResolver')); + + $this->assertFalse(class_exists('PhpParser\FooBar')); + $this->assertFalse(class_exists('PHPParser_FooBar')); + } +}