I was using a binary with the new timelib. Undo the datetime tests
[hiphop-php.git] / hphp / test / zend / bad / ext-date / DateTimeZone_construct_variation1.php.expectf
blob4ac379e3ae48d0f87eda0e3fc812608901c7564a
1 *** Testing DateTime::__construct() : usage variation -  unexpected values to first argument $timezone***
3 -- int 0 --
4 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (0)
6 -- int 1 --
7 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (1)
9 -- int 12345 --
10 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (12345)
12 -- int -12345 --
13 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (-12345)
15 -- float 10.5 --
16 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (10.5)
18 -- float -10.5 --
19 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (-10.5)
21 -- float .5 --
22 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (0.5)
24 -- empty array --
25 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, array given
27 -- int indexed array --
28 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, array given
30 -- associative array --
31 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, array given
33 -- nested arrays --
34 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, array given
36 -- uppercase NULL --
37 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
39 -- lowercase null --
40 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
42 -- lowercase true --
43 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (1)
45 -- lowercase false --
46 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
48 -- uppercase TRUE --
49 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (1)
51 -- uppercase FALSE --
52 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
54 -- empty string DQ --
55 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
57 -- empty string SQ --
58 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
60 -- string DQ --
61 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (string)
63 -- string SQ --
64 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (string)
66 -- mixed case string --
67 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (sTrInG)
69 -- heredoc --
70 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (hello world)
72 -- instance of classWithToString --
73 FAILED: DateTimeZone::__construct(): Unknown or bad timezone (Class A object)
75 -- instance of classWithoutToString --
76 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, object given
78 -- undefined var --
79 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
81 -- unset var --
82 FAILED: DateTimeZone::__construct(): Unknown or bad timezone ()
84 -- resource --
85 FAILED: DateTimeZone::__construct() expects parameter 1 to be string, resource given
86 ===DONE===