1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/ForeachTest.php

74 lines
1.8 KiB
PHP
Raw Normal View History

2016-12-12 05:41:11 +01:00
<?php
namespace Psalm\Tests;
use PhpParser\ParserFactory;
use PHPUnit_Framework_TestCase;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
class ForeachTest extends PHPUnit_Framework_TestCase
{
/** @var \PhpParser\Parser */
2016-12-12 05:41:11 +01:00
protected static $parser;
/** @var TestConfig */
protected static $config;
/** @var \Psalm\Checker\ProjectChecker */
protected $project_checker;
2017-01-13 20:07:23 +01:00
/**
* @return void
*/
2016-12-12 05:41:11 +01:00
public static function setUpBeforeClass()
{
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
self::$config = new TestConfig();
2016-12-12 05:41:11 +01:00
}
2017-01-13 20:07:23 +01:00
/**
* @return void
*/
2016-12-12 05:41:11 +01:00
public function setUp()
{
FileChecker::clearCache();
$this->project_checker = new \Psalm\Checker\ProjectChecker();
$this->project_checker->setConfig(self::$config);
2016-12-12 05:41:11 +01:00
}
/**
2017-01-13 20:07:23 +01:00
* @expectedException \Psalm\Exception\CodeException
2016-12-12 05:41:11 +01:00
* @expectedExceptionMessage ContinueOutsideLoop
2017-01-13 20:07:23 +01:00
* @return void
2016-12-12 05:41:11 +01:00
*/
public function testContinueOutsideLoop()
{
$stmts = self::$parser->parse('<?php
continue;
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
/**
2017-01-13 20:07:23 +01:00
* @expectedException \Psalm\Exception\CodeException
2016-12-12 05:41:11 +01:00
* @expectedExceptionMessage InvalidIterator
2017-01-13 20:07:23 +01:00
* @return void
2016-12-12 05:41:11 +01:00
*/
public function testInvalidIterator()
{
$stmts = self::$parser->parse('<?php
foreach (5 as $a) {
}
');
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
$context = new Context();
$file_checker->visitAndAnalyzeMethods($context);
2016-12-12 05:41:11 +01:00
}
}