BetterReflectionTest\Reflection\Adapter\ReflectionClassTest::testExport PHP Method

testExport() public method

public testExport ( )
    public function testExport()
    {
        $exported = ReflectionClassAdapter::export('\\stdClass');
        $this->assertInternalType('string', $exported);
        $this->assertContains('stdClass', $exported);
    }