assertSame( $expected, $actual ); } public static function provideKeyValuePairSerializationData(): iterable { yield 'empty data' => [ [], [] ]; yield 'mixed data' => [ [ 'string-value' => 'string', 'numeric-value' => 123, 'float-value' => 1.5, 'object-value' => new \stdClass(), 'boolean-value' => true, 'list-value' => [ 'a', 'b' ] ], [ [ 'key' => 'string-value', 'value' => [ 'stringValue' => 'string' ] ], [ 'key' => 'numeric-value', 'value' => [ 'intValue' => 123 ] ], [ 'key' => 'float-value', 'value' => [ 'doubleValue' => 1.5 ] ], [ 'key' => 'boolean-value', 'value' => [ 'boolValue' => true ] ], [ 'key' => 'list-value', 'value' => [ 'arrayValue' => [ 'a', 'b' ] ] ] ] ]; } }