diff options
author | Edgar R. Sandi <edgar.r.sandi@gmail.com> | 2015-06-29 22:02:19 -0300 |
---|---|---|
committer | Christoph M. Becker <cmb@php.net> | 2015-07-03 03:02:40 +0200 |
commit | 48d71af7ed0cac5b0a4f112703e81ec72715aa74 (patch) | |
tree | 43a2a4a0a586c319bddf1976a1b4aa7a54871c30 | |
parent | 616661e0f8368365f50fe9aea7606782aa7552dc (diff) | |
download | php-git-48d71af7ed0cac5b0a4f112703e81ec72715aa74.tar.gz |
Added more tests to improve function coverage
-rw-r--r-- | ext/standard/tests/strings/hebrev_variation1.phpt | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/ext/standard/tests/strings/hebrev_variation1.phpt b/ext/standard/tests/strings/hebrev_variation1.phpt index 210e41e8fb..23a4c23145 100644 --- a/ext/standard/tests/strings/hebrev_variation1.phpt +++ b/ext/standard/tests/strings/hebrev_variation1.phpt @@ -65,7 +65,31 @@ $texts = array ( /*21*/ @$undefined_var, // unset variable -/*22*/ @$unset_var +/*22*/ @$unset_var, + + // text with parentheses + 'text with parentheses (', + 'text with parentheses )', + + // text with brackets + 'text with bracket [', + 'text with bracket ]', + + // text with curly brackets + 'text with curly bracket {', + 'text with curly bracket }', + + // text with backslash escape + 'text with backslash escape \\', + + // text with a slash char + 'text with a slash char /', + + // text with a greater than char + 'text with a greater than char >', + + // text with a less than char + 'text with a less than char <' ); // loop through with each element of the $texts array to test hebrev() function @@ -135,4 +159,24 @@ NULL bool(false) -- Iteration 22 -- bool(false) -===DONE===
\ No newline at end of file +-- Iteration 23 -- +string(23) ") text with parentheses" +-- Iteration 24 -- +string(23) "( text with parentheses" +-- Iteration 25 -- +string(19) "] text with bracket" +-- Iteration 26 -- +string(19) "[ text with bracket" +-- Iteration 27 -- +string(25) "} text with curly bracket" +-- Iteration 28 -- +string(25) "{ text with curly bracket" +-- Iteration 29 -- +string(28) "/ text with backslash escape" +-- Iteration 30 -- +string(24) "text with a slash char /" +-- Iteration 31 -- +string(31) "< text with a greater than char" +-- Iteration 32 -- +string(28) "> text with a less than char" +===DONE=== |