summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_001.phpt')
-rw-r--r--ext/oci8/tests/coll_001.phpt27
1 files changed, 0 insertions, 27 deletions
diff --git a/ext/oci8/tests/coll_001.phpt b/ext/oci8/tests/coll_001.phpt
deleted file mode 100644
index 57d3cf1b47..0000000000
--- a/ext/oci8/tests/coll_001.phpt
+++ /dev/null
@@ -1,27 +0,0 @@
---TEST--
-oci_new_collection()
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-require dirname(__FILE__)."/create_type.inc";
-
-var_dump(oci_new_collection($c, $type_name));
-var_dump(oci_new_collection($c, "NONEXISTENT"));
-
-echo "Done\n";
-
-require dirname(__FILE__)."/drop_type.inc";
-
-?>
---EXPECTF--
-object(OCI-Collection)#%d (1) {
- ["collection"]=>
- resource(%d) of type (oci8 collection)
-}
-
-Warning: oci_new_collection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d
-bool(false)
-Done