当前位置: 首页>>代码示例>>PHP>>正文


PHP TestHandler::handle方法代码示例

本文整理汇总了PHP中Monolog\Handler\TestHandler::handle方法的典型用法代码示例。如果您正苦于以下问题:PHP TestHandler::handle方法的具体用法?PHP TestHandler::handle怎么用?PHP TestHandler::handle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Monolog\Handler\TestHandler的用法示例。


在下文中一共展示了TestHandler::handle方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testHandler

 /**
  * @dataProvider methodProvider
  */
 public function testHandler($method, $level)
 {
     $handler = new TestHandler();
     $record = $this->getRecord($level, 'test' . $method);
     $this->assertFalse($handler->{'has' . $method}($record), 'has' . $method);
     $this->assertFalse($handler->{'has' . $method . 'ThatContains'}('test'), 'has' . $method . 'ThatContains');
     $this->assertFalse($handler->{'has' . $method . 'ThatPasses'}(function ($rec) {
         return true;
     }), 'has' . $method . 'ThatPasses');
     $this->assertFalse($handler->{'has' . $method . 'ThatMatches'}('/test\\w+/'));
     $this->assertFalse($handler->{'has' . $method . 'Records'}(), 'has' . $method . 'Records');
     $handler->handle($record);
     $this->assertFalse($handler->{'has' . $method}('bar'), 'has' . $method);
     $this->assertTrue($handler->{'has' . $method}($record), 'has' . $method);
     $this->assertTrue($handler->{'has' . $method}('test' . $method), 'has' . $method);
     $this->assertTrue($handler->{'has' . $method . 'ThatContains'}('test'), 'has' . $method . 'ThatContains');
     $this->assertTrue($handler->{'has' . $method . 'ThatPasses'}(function ($rec) {
         return true;
     }), 'has' . $method . 'ThatPasses');
     $this->assertTrue($handler->{'has' . $method . 'ThatMatches'}('/test\\w+/'));
     $this->assertTrue($handler->{'has' . $method . 'Records'}(), 'has' . $method . 'Records');
     $records = $handler->getRecords();
     unset($records[0]['formatted']);
     $this->assertEquals(array($record), $records);
 }
开发者ID:saj696,项目名称:pipe,代码行数:28,代码来源:TestHandlerTest.php

示例2: testProcessRecord

 /**
  * @covers Monolog\Handler\AbstractProcessingHandler::processRecord
  */
 public function testProcessRecord()
 {
     $handler = new TestHandler();
     $handler->pushProcessor(new WebProcessor(array('REQUEST_URI' => '', 'REQUEST_METHOD' => '', 'REMOTE_ADDR' => '')));
     $handler->handle($this->getRecord());
     list($record) = $handler->getRecords();
     $this->assertEquals(3, count($record['extra']));
 }
开发者ID:robertowest,项目名称:CuteFlow-V4,代码行数:11,代码来源:AbstractProcessingHandlerTest.php

示例3: testHandler

 /**
  * @dataProvider methodProvider
  */
 public function testHandler($method, $level)
 {
     $handler = new TestHandler();
     $record = $this->getRecord($level, 'test' . $method);
     $this->assertFalse($handler->{'has' . $method}($record));
     $this->assertFalse($handler->{'has' . $method . 'Records'}());
     $handler->handle($record);
     $this->assertFalse($handler->{'has' . $method}('bar'));
     $this->assertTrue($handler->{'has' . $method}($record));
     $this->assertTrue($handler->{'has' . $method}('test' . $method));
     $this->assertTrue($handler->{'has' . $method . 'Records'}());
     $records = $handler->getRecords();
     unset($records[0]['formatted']);
     $this->assertEquals(array($record), $records);
 }
开发者ID:vienbk91,项目名称:fuelphp17,代码行数:18,代码来源:TestHandlerTest.php

示例4: handle

 /**
  * {@inheritdoc}
  */
 public function handle(array $record) : bool
 {
     parent::handle($record);
     throw new \Exception("ExceptionTestHandler::handle");
 }
开发者ID:acrobat,项目名称:monolog,代码行数:8,代码来源:WhatFailureGroupHandlerTest.php

示例5: testIsHandling

 public function testIsHandling()
 {
     $handler = new TestHandler(Logger::WARNING);
     $this->assertTrue($handler->handle($this->getMessage()));
     $this->assertFalse($handler->handle($this->getMessage(Logger::DEBUG)));
 }
开发者ID:nickaggarwal,项目名称:sample-symfony2,代码行数:6,代码来源:AbstractHandlerTest.php


注:本文中的Monolog\Handler\TestHandler::handle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。