summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_002.phpt')
-rw-r--r--ext/oci8/tests/coll_002.phpt30
1 files changed, 0 insertions, 30 deletions
diff --git a/ext/oci8/tests/coll_002.phpt b/ext/oci8/tests/coll_002.phpt
deleted file mode 100644
index 6d30519897..0000000000
--- a/ext/oci8/tests/coll_002.phpt
+++ /dev/null
@@ -1,30 +0,0 @@
---TEST--
-oci_new_collection() + free()
---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($coll1 = oci_new_collection($c, $type_name));
-
-var_dump($coll1->free());
-var_dump($coll1->size());
-
-echo "Done\n";
-
-require dirname(__FILE__)."/drop_type.inc";
-
-?>
---EXPECTF--
-object(OCI-Collection)#%d (1) {
- ["collection"]=>
- resource(%d) of type (oci8 collection)
-}
-bool(true)
-
-Warning: OCI-Collection::size(): %d is not a valid oci8 collection resource in %s on line %d
-bool(false)
-Done