GraphAware\Neo4j\OGM\Tests\Integration\LazyLoadingIntegrationTest::inspectValue PHP Method

inspectValue() private method

private inspectValue ( $object )
    private function inspectValue($object)
    {
        $reflClass = new \ReflectionClass(Company::class);
        $property = $reflClass->getProperty('employees');
        $property->setAccessible(true);
        $v = $property->getValue($object);
        $this->assertInstanceOf(LazyRelationshipCollection::class, $v);
    }