From 61374e5ddd285f9a125a52005ad7eaefd3585f02 Mon Sep 17 00:00:00 2001 From: valmat Date: Sat, 5 Apr 2014 22:00:55 +0600 Subject: add tests for HashMember --- tests/php/phpt/variables/020-HashMember-2.phpt | 76 ++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 tests/php/phpt/variables/020-HashMember-2.phpt (limited to 'tests/php/phpt/variables/020-HashMember-2.phpt') diff --git a/tests/php/phpt/variables/020-HashMember-2.phpt b/tests/php/phpt/variables/020-HashMember-2.phpt new file mode 100644 index 0000000..bb48d06 --- /dev/null +++ b/tests/php/phpt/variables/020-HashMember-2.phpt @@ -0,0 +1,76 @@ +--TEST-- +get_complex_array (test HashMember #2) +--SKIPIF-- + +--FILEEOF-- + + array ( + 'k3' => 'v1', + 'k2' => + array ( + 'k4' => 'v2', + ), + ), + 'k5' => + array ( + 1 => 'v3', + ), + 2 => + array ( + 'k6' => + array ( + 1 => 'v4', + ), + ), + 3 => + array ( + 4 => + array ( + 1 => 'v5', + 2 => + array ( + 5 => + array ( + 7 => + array ( + 11 => 'v5', + 'k' => 'v5', + ), + ), + ), + ), + ), + 'c' => + array ( + 0 => 'nested value', + 1 => NULL, + 2 => + array ( + ), + 3 => 'example', + ), +) \ No newline at end of file -- cgit v1.2.3