ircbot/Main.php

14 lines
407 B
PHP
Raw Permalink Normal View History

2010-11-21 23:48:11 +01:00
<?php
error_reporting(E_ALL);
require_once('SocketFramework' . DIRECTORY_SEPARATOR . 'Bootstrap.php');
2010-11-21 23:48:11 +01:00
$classLoader->addClassPathMapping('JPT\IrcClient', 'IrcClient' . \DIRECTORY_SEPARATOR . 'Classes');
2010-11-21 23:48:11 +01:00
try {
require_once('Testcode' . DIRECTORY_SEPARATOR . 'Client' . DIRECTORY_SEPARATOR . 'ClientManagerTest.php');
2010-11-21 23:48:11 +01:00
}
catch(Exception $e) {
echo PHP_EOL.PHP_EOL."Caught Exception: " . $e . PHP_EOL;
2010-11-21 23:48:11 +01:00
}
2010-11-21 23:48:11 +01:00
?>