summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_005.phpt')
-rw-r--r--ext/oci8/tests/coll_005.phpt30
1 files changed, 30 insertions, 0 deletions
diff --git a/ext/oci8/tests/coll_005.phpt b/ext/oci8/tests/coll_005.phpt
new file mode 100644
index 0000000..84084e7
--- /dev/null
+++ b/ext/oci8/tests/coll_005.phpt
@@ -0,0 +1,30 @@
+--TEST--
+ocinewcollection()
+--SKIPIF--
+<?php
+$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
+require(dirname(__FILE__).'/skipif.inc');
+?>
+--FILE--
+<?php
+
+require dirname(__FILE__)."/connect.inc";
+require dirname(__FILE__)."/create_type.inc";
+
+var_dump(ocinewcollection($c, $type_name));
+var_dump(ocinewcollection($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: ocinewcollection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d
+bool(false)
+Done