Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
--TEST--
|
|
|
2 |
XML_Query2XML::factory(): check for XML_Query2XML_DBException
|
|
|
3 |
--FILE--
|
|
|
4 |
<?php
|
|
|
5 |
require_once 'XML/Query2XML.php';
|
|
|
6 |
try {
|
|
|
7 |
$query2xml =& XML_Query2XML::factory("some string");
|
|
|
8 |
} catch (XML_Query2XML_ConfigException $e) {
|
|
|
9 |
echo get_class($e) . ': ' . $e->getMessage();
|
|
|
10 |
}
|
|
|
11 |
?>
|
|
|
12 |
--EXPECT--
|
|
|
13 |
XML_Query2XML_ConfigException: Argument passed to the XML_Query2XML constructor is not an instance of DB_common, MDB2_Driver_Common, ADOConnection, PDO, Net_LDAP or Net_LDAP2.
|