1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-31 18:30:15 +02:00

Better naming

This commit is contained in:
Simon Mönch
2013-02-26 10:19:42 +01:00
parent bad76ce2a6
commit 9cf31da70d
3 changed files with 11 additions and 11 deletions

View File

@@ -13,15 +13,15 @@ namespace Monolog\Processor;
use Monolog\TestCase;
class RequestTokenProcessorTest extends TestCase
class UidProcessorTest extends TestCase
{
/**
* @covers Monolog\Processor\RequestTokenProcessor::__invoke
* @covers Monolog\Processor\UidProcessor::__invoke
*/
public function testProcessor()
{
$processor = new RequestTokenProcessor();
$processor = new UidProcessor();
$record = $processor($this->getRecord());
$this->assertArrayHasKey('request_token', $record['extra']);
$this->assertArrayHasKey('uid', $record['extra']);
}
}