Bluz\Tests\Controller\ReflectionTest::testExportReflectionWithData PHP Method

testExportReflectionWithData() public method

Test all reflection options and export it
    public function testExportReflectionWithData()
    {
        $controllerFile = dirname(__FILE__) . '/../Fixtures/Controllers/ConcreteWithData.php';
        $reflection = new Reflection($controllerFile);
        $reflection->process();
        $data = var_export($reflection, true);
        $this->assertStringStartsWith('Bluz\\Controller\\Reflection::__set_state', $data);
    }