1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/BadFormatTest.php
2019-01-20 11:10:12 -05:00

92 lines
2.2 KiB
PHP

<?php
namespace Psalm\Tests;
use Psalm\Context;
class BadFormatTest extends TestCase
{
/**
* @expectedException Psalm\Exception\CodeException
* @expectedExceptionMessage ParseError - somefile.php:9
* @return void
*/
public function testMissingSemicolon()
{
$this->addFile(
'somefile.php',
'<?php
class A {
/** @var int|null */
protected $hello;
/** @return void */
function foo() {
$this->hello = 5
}
}'
);
$this->analyzeFile('somefile.php', new Context());
}
/**
* @expectedException Psalm\Exception\CodeException
* @expectedExceptionMessage ParseError - somefile.php:3
* @return void
*/
public function testClassMethodWithNoStmts()
{
$this->addFile(
'somefile.php',
'<?php
class A {
public function foo() : void;
}'
);
$this->analyzeFile('somefile.php', new Context());
}
/**
* @expectedException Psalm\Exception\CodeException
* @expectedExceptionMessage ParseError - somefile.php:5
* @return void
*/
public function testTypingReturnType()
{
$this->addFile(
'somefile.php',
'<?php
class A {
/** @return void */
protected function _getCollaborators(User $user, User $cur_user = null) :
{
return $a;
}
}'
);
$this->analyzeFile('somefile.php', new Context());
}
/**
* @expectedException Psalm\Exception\CodeException
* @expectedExceptionMessage ParseError - somefile.php:6
* @return void
*/
public function testOverriddenUse()
{
$this->addFile(
'somefile.php',
'<?php
namespace Demo;
use A\B;
interface B {}'
);
$this->analyzeFile('somefile.php', new Context());
}
}