/** * @test * @dataProvider objectGetValues * * @param mixed $value * @param string $path * @param mixed $expectedGetValue */ public function getValueByPathForObjectValues($value, $path, $expectedGetValue) { $context = new Context($value); $getValue = $context->get($path); $this->assertSame($getValue, $expectedGetValue); }