mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
77 lines
1.8 KiB
PHP
77 lines
1.8 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
use PhpParser\ParserFactory;
|
|
use PHPUnit_Framework_TestCase;
|
|
use Psalm\Checker\FileChecker;
|
|
use Psalm\Config;
|
|
use Psalm\Context;
|
|
|
|
class MethodSignatureTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/** @var \PhpParser\Parser */
|
|
protected static $parser;
|
|
|
|
public static function setUpBeforeClass()
|
|
{
|
|
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
|
|
|
|
$config = new TestConfig();
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
FileChecker::clearCache();
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
* @expectedExceptionMessage Method B::foo has fewer arguments than parent method A::foo
|
|
*/
|
|
public function testFewerArguments()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
class A {
|
|
public function foo(int $a, bool $b) : void {
|
|
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
public function foo(int $a) : void {
|
|
|
|
}
|
|
}
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->check(true, true, $context);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Psalm\Exception\CodeException
|
|
* @expectedExceptionMessage Argument 1 of B::foo has wrong type 'bool', expecting 'int' as defined by A::foo
|
|
*/
|
|
public function testDifferentArguments()
|
|
{
|
|
$stmts = self::$parser->parse('<?php
|
|
class A {
|
|
public function foo(int $a, bool $b) : void {
|
|
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
public function foo(bool $b, int $a) : void {
|
|
|
|
}
|
|
}
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $stmts);
|
|
$context = new Context('somefile.php');
|
|
$file_checker->check(true, true, $context);
|
|
}
|
|
}
|