You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
311 B

  1. --TEST--
  2. SQLite3::open test with empty string argument via the constructor
  3. --CREDITS--
  4. Thijs Feryn <thijs@feryn.eu>
  5. #TestFest PHPBelgium 2009
  6. --FILE--
  7. <?php
  8. try{
  9. $db = new SQLite3('');
  10. } catch(Exception $e) {
  11. echo $e->getMessage().PHP_EOL;
  12. }
  13. echo "Done\n";
  14. ?>
  15. --EXPECTF--
  16. Unable to expand filepath
  17. Done