typo
[m6w6/ext-pq] / tests / res001.phpt
1 --TEST--
2 empty result
3 --SKIPIF--
4 <?php
5 include "_skipif.inc";
6 ?>
7 --FILE--
8 <?php
9 echo "Test\n";
10
11 include "_setup.inc";
12
13 class r extends pq\Result {
14 public $dummy = 2;
15 }
16
17 var_dump(new pq\Result, get_object_vars(new r));
18 ?>
19 Done
20 --EXPECTF--
21 Test
22
23 Warning: pq\Result not initialized in %s on line %d
24
25 Warning: pq\Result not initialized in %s on line %d
26
27 Warning: pq\Result not initialized in %s on line %d
28
29 Warning: pq\Result not initialized in %s on line %d
30
31 Warning: pq\Result not initialized in %s on line %d
32
33 Warning: pq\Result not initialized in %s on line %d
34
35 Warning: pq\Result not initialized in %s on line %d
36
37 Warning: pq\Result not initialized in %s on line %d
38
39 Warning: pq\Result not initialized in %s on line %d
40
41 Warning: pq\Result not initialized in %s on line %d
42
43 Warning: pq\Result not initialized in %s on line %d
44
45 Warning: pq\Result not initialized in %s on line %d
46
47 Warning: pq\Result not initialized in %s on line %d
48
49 Warning: pq\Result not initialized in %s on line %d
50
51 Warning: pq\Result not initialized in %s on line %d
52
53 Warning: pq\Result not initialized in %s on line %d
54
55 Warning: pq\Result not initialized in %s on line %d
56 object(pq\Result)#%d (8) {
57 ["status"]=>
58 NULL
59 ["statusMessage"]=>
60 NULL
61 ["errorMessage"]=>
62 NULL
63 ["numRows"]=>
64 int(0)
65 ["numCols"]=>
66 int(0)
67 ["affectedRows"]=>
68 int(0)
69 ["fetchType"]=>
70 int(0)
71 ["autoConvert"]=>
72 int(0)
73 }
74 array(9) {
75 ["dummy"]=>
76 int(2)
77 ["status"]=>
78 NULL
79 ["statusMessage"]=>
80 NULL
81 ["errorMessage"]=>
82 NULL
83 ["numRows"]=>
84 int(0)
85 ["numCols"]=>
86 int(0)
87 ["affectedRows"]=>
88 int(0)
89 ["fetchType"]=>
90 int(0)
91 ["autoConvert"]=>
92 int(0)
93 }
94 Done