mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
|
<?php
|
||
|
namespace Psalm\Tests;
|
||
|
|
||
|
class IntRangeTest extends TestCase
|
||
|
{
|
||
|
use Traits\InvalidCodeAnalysisTestTrait;
|
||
|
use Traits\ValidCodeAnalysisTestTrait;
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
||
|
*/
|
||
|
public function providerValidCodeParse(): iterable
|
||
|
{
|
||
|
return [
|
||
|
'intRangeContained' => [
|
||
|
'<?php
|
||
|
/**
|
||
|
* @param int<1,12> $a
|
||
|
* @return int<-1, max>
|
||
|
*/
|
||
|
function scope(int $a){
|
||
|
return $a;
|
||
|
}',
|
||
|
],
|
||
|
'positiveIntRange' => [
|
||
|
'<?php
|
||
|
/**
|
||
|
* @param int<1,12> $a
|
||
|
* @return positive-int
|
||
|
*/
|
||
|
function scope(int $a){
|
||
|
return $a;
|
||
|
}',
|
||
|
],
|
||
|
'intRangeToInt' => [
|
||
|
'<?php
|
||
|
/**
|
||
|
* @param int<1,12> $a
|
||
|
* @return int
|
||
|
*/
|
||
|
function scope(int $a){
|
||
|
return $a;
|
||
|
}',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,error_message:string,1?:string[],2?:bool,3?:string}>
|
||
|
*/
|
||
|
public function providerInvalidCodeParse(): iterable
|
||
|
{
|
||
|
return [
|
||
|
'intRangeNotContained' => [
|
||
|
'<?php
|
||
|
/**
|
||
|
* @param int<1,12> $a
|
||
|
* @return int<-1, 11>
|
||
|
* @psalm-suppress InvalidReturnStatement
|
||
|
*/
|
||
|
function scope(int $a){
|
||
|
return $a;
|
||
|
}',
|
||
|
'error_message' => 'InvalidReturnType',
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|