2017-02-10 21:27:12 -05:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2018-01-21 10:22:04 -05:00
|
|
|
use Psalm\Context;
|
2017-02-10 21:27:12 -05:00
|
|
|
|
2017-04-24 23:45:02 -04:00
|
|
|
class BadFormatTest extends TestCase
|
2017-02-10 21:27:12 -05:00
|
|
|
{
|
|
|
|
/**
|
2018-09-25 18:37:24 -04:00
|
|
|
* @expectedException PhpParser\Error
|
2017-02-10 21:27:12 -05:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testMissingSemicolon()
|
|
|
|
{
|
2017-07-25 16:11:02 -04:00
|
|
|
$this->addFile(
|
2017-04-24 23:45:02 -04:00
|
|
|
'somefile.php',
|
2017-02-10 21:27:12 -05:00
|
|
|
'<?php
|
2017-07-25 16:11:02 -04:00
|
|
|
class A {
|
|
|
|
/** @var int|null */
|
|
|
|
protected $hello;
|
2017-02-10 21:27:12 -05:00
|
|
|
|
2017-07-25 16:11:02 -04:00
|
|
|
/** @return void */
|
|
|
|
function foo() {
|
|
|
|
$this->hello = 5
|
|
|
|
}
|
|
|
|
}'
|
2017-02-10 21:27:12 -05:00
|
|
|
);
|
|
|
|
|
2018-01-21 10:22:04 -05:00
|
|
|
$this->analyzeFile('somefile.php', new Context());
|
2017-02-10 21:27:12 -05:00
|
|
|
}
|
|
|
|
}
|