summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/chunk_split_error.phpt
diff options
context:
space:
mode:
authorRaghubansh Kumar <kraghuba@php.net>2007-09-29 16:49:41 +0000
committerRaghubansh Kumar <kraghuba@php.net>2007-09-29 16:49:41 +0000
commit482eabc6b60b37d69c3cdb7db0e1a1fbfd17948f (patch)
tree7f85636bf4b2f2b715087db67f3fd245c9d82ccd /ext/standard/tests/strings/chunk_split_error.phpt
parentfedf2eddfd10e1ffedffeee4e24ed630c44393ba (diff)
downloadphp-git-482eabc6b60b37d69c3cdb7db0e1a1fbfd17948f.tar.gz
New testcases for chunk_split() function
Diffstat (limited to 'ext/standard/tests/strings/chunk_split_error.phpt')
-rw-r--r--ext/standard/tests/strings/chunk_split_error.phpt40
1 files changed, 40 insertions, 0 deletions
diff --git a/ext/standard/tests/strings/chunk_split_error.phpt b/ext/standard/tests/strings/chunk_split_error.phpt
new file mode 100644
index 0000000000..153250c1ae
--- /dev/null
+++ b/ext/standard/tests/strings/chunk_split_error.phpt
@@ -0,0 +1,40 @@
+--TEST--
+Test chunk_split() function : error conditions
+--FILE--
+<?php
+/* Prototype : string chunk_split(string $str [, int $chunklen [, string $ending]])
+ * Description: Returns split line
+ * Source code: ext/standard/string.c
+ * Alias to functions: none
+*/
+
+/*
+* Testing error conditions of chunk_split() with zero arguments
+* and for more than expected number of argments
+*/
+
+echo "*** Testing chunk_split() : error conditions ***\n";
+
+// Zero arguments
+echo "-- Testing chunk_split() function with Zero arguments --";
+var_dump( chunk_split() );
+
+// With one more than the expected number of arguments
+$str = 'Testing chunk_split';
+$chunklen = 5;
+$ending = '***';
+$extra_arg = 10;
+echo "-- Testing chunk_split() function with more than expected no. of arguments --";
+var_dump( chunk_split($str, $chunklen, $ending, $extra_arg) );
+
+echo "Done"
+?>
+--EXPECTF--
+*** Testing chunk_split() : error conditions ***
+-- Testing chunk_split() function with Zero arguments --
+Warning: Wrong parameter count for chunk_split() in %s on line %d
+NULL
+-- Testing chunk_split() function with more than expected no. of arguments --
+Warning: Wrong parameter count for chunk_split() in %s on line %d
+NULL
+Done