Neos\Eel\Tests\Unit\ContextTest::getValueByPathForObjectValues PHP Method

getValueByPathForObjectValues() public method

public getValueByPathForObjectValues ( mixed $value, string $path, mixed $expectedGetValue )
$value mixed
$path string
$expectedGetValue mixed
    public function getValueByPathForObjectValues($value, $path, $expectedGetValue)
    {
        $context = new Context($value);
        $getValue = $context->get($path);
        $this->assertSame($getValue, $expectedGetValue);
    }