X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Fres001.phpt;fp=tests%2Fres001.phpt;h=a3252475839ade683a1db91662cc24f87a9f31f5;hp=b2a36670a8830dded2914385b40c78e0f4dac90e;hb=320bae0144fab755d678317f7ec14f9cb3ae1869;hpb=c9082b82cd9275d2ff9027b108ea01ab88e70294 diff --git a/tests/res001.phpt b/tests/res001.phpt index b2a3667..a325247 100644 --- a/tests/res001.phpt +++ b/tests/res001.phpt @@ -19,7 +19,13 @@ class r extends pq\Result { public $dummy = 2; } -var_dump(new pq\Result, get_object_vars(new r)); +var_dump(new pq\Result); + +echo "Test\n"; +$v = get_object_vars(new r); +ksort($v); +var_dump($v); + ?> Done --EXPECTF-- @@ -42,6 +48,27 @@ 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 (9) { + ["status"]=> + NULL + ["statusMessage"]=> + NULL + ["errorMessage"]=> + NULL + ["diag"]=> + NULL + ["numRows"]=> + int(0) + ["numCols"]=> + int(0) + ["affectedRows"]=> + int(0) + ["fetchType"]=> + int(0) + ["autoConvert"]=> + int(65535) +} +Test Warning: pq\Result not initialized in %s on line %d @@ -62,46 +89,26 @@ 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 (9) { - ["status"]=> - NULL - ["statusMessage"]=> - NULL - ["errorMessage"]=> - NULL - ["diag"]=> - NULL - ["numRows"]=> - int(0) - ["numCols"]=> - int(0) +array(10) { ["affectedRows"]=> int(0) - ["fetchType"]=> - int(0) ["autoConvert"]=> int(65535) -} -array(10) { + ["diag"]=> + NULL ["dummy"]=> int(2) - ["status"]=> - NULL - ["statusMessage"]=> - NULL ["errorMessage"]=> NULL - ["diag"]=> - NULL - ["numRows"]=> + ["fetchType"]=> int(0) ["numCols"]=> int(0) - ["affectedRows"]=> - int(0) - ["fetchType"]=> + ["numRows"]=> int(0) - ["autoConvert"]=> - int(65535) + ["status"]=> + NULL + ["statusMessage"]=> + NULL } Done