1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 09:37:59 +01:00
psalm/tests/ListTest.php
Jon Ursenbach 11bc153deb Rewriting and streamlining every unit test with data providers. (#147)
* Rewriting and streamlining every unit test with data providers.

All unit tests have been rewritten into PHPUnit data providers
to reduce the amount of unnecessary code-reuse through out the
test suite.
2017-04-24 23:45:02 -04:00

87 lines
2.4 KiB
PHP

<?php
namespace Psalm\Tests;
class ListTest extends TestCase
{
use Traits\FileCheckerInvalidCodeParseTestTrait;
use Traits\FileCheckerValidCodeParseTestTrait;
/**
* @return array
*/
public function providerFileCheckerValidCodeParse()
{
return [
'simpleVars' => [
'<?php
list($a, $b) = ["a", "b"];',
'assertions' => [
['string' => '$a'],
['string' => '$b']
]
],
'simpleVarsWithSeparateTypes' => [
'<?php
list($a, $b) = ["a", 2];',
'assertions' => [
['string' => '$a'],
['int' => '$b']
]
],
'simpleVarsWithSeparateTypesInVar' => [
'<?php
$bar = ["a", 2];
list($a, $b) = $bar;',
'assertions' => [
['int|string' => '$a'],
['int|string' => '$b']
]
],
'thisVar' => [
'<?php
class A {
/** @var string */
public $a = "";
/** @var string */
public $b = "";
public function fooFoo() : string
{
list($this->a, $this->b) = ["a", "b"];
return $this->a;
}
}'
]
];
}
/**
* @return array
*/
public function providerFileCheckerInvalidCodeParse()
{
return [
'thisVarWithBadType' => [
'<?php
class A {
/** @var int */
public $a = 0;
/** @var string */
public $b = "";
public function fooFoo() : string
{
list($this->a, $this->b) = ["a", "b"];
return $this->a;
}
}',
'error_message' => 'InvalidPropertyAssignment - somefile.php:11'
]
];
}
}