1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-10 23:24:02 +02:00

Fix tests

This commit is contained in:
Jordi Boggiano
2013-07-28 23:19:20 +02:00
parent df1f411378
commit 52f478b289
2 changed files with 8 additions and 6 deletions

View File

@@ -15,26 +15,26 @@ use Monolog\TestCase;
use Monolog\Logger;
class NewRelicHandlerTest extends TestCase
{
{
/**
* @expectedException Monolog\Handler\MissingExtensionException
*/
public function testThehandlerThrowsAnExceptionIfTheNRExtensionIsNotLoaded()
{
$handler = new StubNewRelicHandlerWithoutExtension();
$handler->handle($this->getRecord());
$handler->handle($this->getRecord(Logger::ERROR));
}
public function testThehandlerCanHandleTheRecord()
{
$handler = new StubNewRelicHandler();
$handler->handle($this->getRecord());
$handler->handle($this->getRecord(Logger::ERROR));
}
public function testThehandlerCanAddParamsToTheNewRelicTrace()
{
$handler = new StubNewRelicHandler();
$handler->handle($this->getRecord(100, 'log message', array('a' => 'b')));
$handler->handle($this->getRecord(Logger::ERROR, 'log message', array('a' => 'b')));
}
}