mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-01 10:50:21 +02:00
Fix test on windows
This commit is contained in:
@@ -16,16 +16,16 @@ class SyslogUdpHandlerTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
public function testWeSplitIntoLines()
|
public function testWeSplitIntoLines()
|
||||||
{
|
{
|
||||||
$handler = new SyslogUdpHandler("127.0.0.1", 514, "local5");
|
$handler = new SyslogUdpHandler("127.0.0.1", 514, "authpriv");
|
||||||
$handler->setFormatter(new \Monolog\Formatter\ChromePHPFormatter());
|
$handler->setFormatter(new \Monolog\Formatter\ChromePHPFormatter());
|
||||||
|
|
||||||
$socket = $this->getMock('\Monolog\Handler\SyslogUdp\UdpSocket', array('write'), array('lol', 'lol'));
|
$socket = $this->getMock('\Monolog\Handler\SyslogUdp\UdpSocket', array('write'), array('lol', 'lol'));
|
||||||
$socket->expects($this->at(0))
|
$socket->expects($this->at(0))
|
||||||
->method('write')
|
->method('write')
|
||||||
->with("lol", "<172>: ");
|
->with("lol", "<".(LOG_AUTHPRIV + LOG_WARNING).">: ");
|
||||||
$socket->expects($this->at(1))
|
$socket->expects($this->at(1))
|
||||||
->method('write')
|
->method('write')
|
||||||
->with("hej", "<172>: ");
|
->with("hej", "<".(LOG_AUTHPRIV + LOG_WARNING).">: ");
|
||||||
|
|
||||||
$handler->setSocket($socket);
|
$handler->setSocket($socket);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user