1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-30 04:19:49 +01:00
ext-pq/tests/res001.phpt
Michael Wallner 0bce4e6693 moar tests
2013-05-14 13:50:22 +02:00

87 lines
1.4 KiB
PHP

--TEST--
empty result
--SKIPIF--
<?php
include "_skipif.inc";
?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
class r extends pq\Result {
public $dummy = 2;
}
var_dump(new pq\Result, get_object_vars(new r));
?>
Done
--EXPECTF--
Test
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
Warning: pq\Result not initialized in %s on line %d
object(pq\Result)#%d (7) {
["status"]=>
NULL
["statusMessage"]=>
NULL
["errorMessage"]=>
NULL
["numRows"]=>
int(0)
["numCols"]=>
int(0)
["affectedRows"]=>
int(0)
["fetchType"]=>
int(0)
}
array(8) {
["dummy"]=>
int(2)
["status"]=>
NULL
["statusMessage"]=>
NULL
["errorMessage"]=>
NULL
["numRows"]=>
int(0)
["numCols"]=>
int(0)
["affectedRows"]=>
int(0)
["fetchType"]=>
int(0)
}
Done