當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。