From 775437cb1c8d469ea2e3be2d7e970f9d83f08577 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 7 Jun 2020 08:15:04 +0000 Subject: [PATCH] Another test added --- tests/src/Util/JSonLDTest.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/src/Util/JSonLDTest.php b/tests/src/Util/JSonLDTest.php index 969a04759..a8d4467f5 100644 --- a/tests/src/Util/JSonLDTest.php +++ b/tests/src/Util/JSonLDTest.php @@ -53,6 +53,15 @@ class JsonLDTest extends TestCase $this->assertSame(['value1', 'value2', 'value3'], $data); } + public function testFetchElementArrayFoundID2() + { + $object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'], + ['subfield21' => 'value21', 'subfield22' => 'value22'], + 'value3', ['@id' => 'value4', 'subfield42' => 'value42']]]; + + $data = JsonLD::fetchElementArray($object, 'field', '@id'); + $this->assertSame(['value3', 'value4'], $data); + } public function testFetchElementArrayFoundArrays() { $object = ['field' => [['subfield11' => 'value11', 'subfield12' => 'value12'],