summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzfile_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zlib/tests/gzfile_variation3.phpt')
-rw-r--r--ext/zlib/tests/gzfile_variation3.phpt41
1 files changed, 0 insertions, 41 deletions
diff --git a/ext/zlib/tests/gzfile_variation3.phpt b/ext/zlib/tests/gzfile_variation3.phpt
deleted file mode 100644
index 276c839468..0000000000
--- a/ext/zlib/tests/gzfile_variation3.phpt
+++ /dev/null
@@ -1,41 +0,0 @@
---TEST--
-Test function gzfile() by substituting argument 1 with emptyUnsetUndefNull values.
---SKIPIF--
-<?php
-if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
-?>
---FILE--
-<?php
-
-
-$use_include_path = false;
-
-
-$unset_var = 10;
-unset($unset_var);
-
-$variation = array(
- 'unset var' => @$unset_var,
- 'undefined var' => @$undefined_var,
- 'empty string DQ' => "",
- 'empty string SQ' => '',
- 'uppercase NULL' => NULL,
- 'lowercase null' => null,
- );
-
-
-foreach ( $variation as $var ) {
- try {
- var_dump(gzfile( $var , $use_include_path ) );
- } catch (\ValueError $e) {
- echo $e->getMessage() . \PHP_EOL;
- }
-}
-?>
---EXPECT--
-Path cannot be empty
-Path cannot be empty
-Path cannot be empty
-Path cannot be empty
-Path cannot be empty
-Path cannot be empty