php-src/ext/sqlite3/tests/sqlite3_32_createAggregate_paramCount.phpt

22 lines
427 B
Plaintext
Raw Normal View History

2009-05-17 16:51:22 +00:00
--TEST--
SQLite3::createAggregate Test that an error is thrown when no parameters are present
2009-07-17 09:25:13 +00:00
--CREDITS--
2009-05-17 16:51:22 +00:00
James Cauwelier
# Belgium PHP TestFest
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$db = new SQLite3(':memory:');
$db->createAggregate ();
$db->close();
echo "Done"
?>
--EXPECTF--
Warning: SQLite3::createAggregate() expects at least 3 parameters, 0 given in %s on line %d
Done