From ab3d7c489856771f0d6b2a2b13ff97ee33655fac Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 4 Jan 2015 22:25:50 +0000 Subject: [PATCH] Remove useless functional test --- .../Functional/Handler/FirePHPHandlerTest.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 tests/Monolog/Functional/Handler/FirePHPHandlerTest.php diff --git a/tests/Monolog/Functional/Handler/FirePHPHandlerTest.php b/tests/Monolog/Functional/Handler/FirePHPHandlerTest.php deleted file mode 100644 index 7e4e7eb5..00000000 --- a/tests/Monolog/Functional/Handler/FirePHPHandlerTest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -spl_autoload_register(function ($class) { - $file = __DIR__.'/../../../../src/'.strtr($class, '\\', '/').'.php'; - if (file_exists($file)) { - require $file; - - return true; - } -}); - -use Monolog\Logger; -use Monolog\Handler\FirePHPHandler; -use Monolog\Handler\ChromePHPHandler; - -$logger = new Logger('firephp'); -$logger->pushHandler(new FirePHPHandler); -$logger->pushHandler(new ChromePHPHandler()); - -$logger->addDebug('Debug'); -$logger->addInfo('Info'); -$logger->addWarning('Warning'); -$logger->addError('Error');