Bluz\Tests\Controller\ReflectionTest::testReflectionWithoutData PHP Метод

testReflectionWithoutData() публичный Метод

Test reflection: - get params without description
    public function testReflectionWithoutData()
    {
        $controllerFile = dirname(__FILE__) . '/../Fixtures/Controllers/ConcreteWithoutData.php';
        $reflection = new Reflection($controllerFile);
        $reflection->process();
        $this->assertEqualsArray(['a' => null, 'b' => null, 'c' => null], $reflection->getParams());
    }