Skip to content

Commit 263b46e

Browse files
committed
TO DISCUSS: handle or not handle these cases ?
1 parent 7fcb729 commit 263b46e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/phpunit/tests/formatting/ConvertInvalidEntries.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,16 @@ public function data_convert_invalid_entities_non_string() {
8383
'input' => 25.689,
8484
'output' => 25.689,
8585
),
86+
/*
87+
'array' => array(
88+
'input' => array( 1, 2, 3 ),
89+
'output' => '',
90+
),
91+
'object' => array(
92+
'input' => $std_class,
93+
'output' => '',
94+
),
95+
*/
8696
);
8797
}
8898

0 commit comments

Comments
 (0)