make test runner work in open source repo
[hiphop-php.git] / hphp / test / zend / bad / ext-date / DateTimeZone_verify.php
blob36fd35db8364fe32d4bfb98518cc5aa6a11b291c
1 <?php
3 echo "*** Verify DateTimeZone class ***\n";
5 echo "Verify DateTimeZone class registered OK\n";
6 $class = new ReflectionClass('DateTimeZone');
7 var_dump($class);
9 echo "..and get names of all its methods\n";
10 $methods = $class->getMethods();
11 var_dump($methods);
13 echo "..and get names of all its class constants\n";
14 $constants = $class->getConstants();
15 var_dump($constants);
17 ===DONE===