1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 22:01:48 +01:00
psalm/tests/NamespaceTest.php

66 lines
1.3 KiB
PHP
Raw Normal View History

2017-01-13 13:48:58 -05:00
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class NamespaceTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
protected static $parser;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
2017-01-13 13:48:58 -05:00
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
$config = new TestConfig();
}
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
2017-01-13 13:48:58 -05:00
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
}
2017-01-13 14:07:23 -05:00
/**
* @return void
*/
2017-01-13 13:48:58 -05:00
public function testEmptyNamespace()
{
$stmts = self::$parser->parse('<?php
namespace A {
/** @return void */
function foo() {
2017-01-13 13:48:58 -05:00
}
class Bar {
}
}
namespace {
A\foo();
\A\foo();
(new A\Bar);
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context('somefile.php');
$file_checker->visitAndAnalyzeMethods($context);
}
}