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

testExport() public method

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