Fix unit test
This commit is contained in:
parent
23c754aed3
commit
b2df7b6b8a
1 changed files with 6 additions and 2 deletions
|
@ -108,13 +108,17 @@ class ControllerMethodReflectorTest extends \Test\TestCase {
|
|||
* @Annotation
|
||||
* @param int $a
|
||||
* @param int $b
|
||||
*/
|
||||
public function arguments3($a, float $b, int $c, $d){}
|
||||
|
||||
/**
|
||||
* @requires PHP 7
|
||||
*/
|
||||
public function testReadTypeIntAnnotationsScalarTypes($a, float $b, int $c, $d){
|
||||
public function testReadTypeIntAnnotationsScalarTypes(){
|
||||
$reader = new ControllerMethodReflector();
|
||||
$reader->reflect(
|
||||
'\OC\AppFramework\Utility\ControllerMethodReflectorTest',
|
||||
'testReadTypeIntAnnotationsScalarTypes'
|
||||
'arguments3'
|
||||
);
|
||||
|
||||
$this->assertEquals('int', $reader->getType('a'));
|
||||
|
|
Loading…
Reference in a new issue