mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
19 lines
368 B
PHP
19 lines
368 B
PHP
--TEST--
|
|
SQLite3::open test, testing for function parameters
|
|
--CREDITS--
|
|
Felix De Vliegher
|
|
# Belgian PHP Testfest 2009
|
|
--SKIPIF--
|
|
<?php require_once(__DIR__ . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
$db = new SQLite3();
|
|
} catch (TypeError $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(59) "SQLite3::__construct() expects at least 1 argument, 0 given"
|