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


PHP NoSuchEntityException::getLogMessage方法代码示例

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


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

示例1: testConstructor

    /**
     * @return void
     */
    public function testConstructor()
    {
        $this->renderedMessage = 'rendered message';
        $this->rendererMock->expects($this->once())
            ->method('render')
            ->will($this->returnValue($this->renderedMessage));
        \Magento\Framework\Phrase::setRenderer($this->rendererMock);
        $message = 'message %1 %2';
        $params = [
            'parameter1',
            'parameter2',
        ];
        $expectedLogMessage = 'message parameter1 parameter2';
        $cause = new \Exception();
        $localizeException = new NoSuchEntityException(
            new Phrase($message, $params),
            $cause
        );

        $this->assertEquals(0, $localizeException->getCode());

        $this->assertEquals($message, $localizeException->getRawMessage());
        $this->assertEquals($this->renderedMessage, $localizeException->getMessage());
        $this->assertEquals($expectedLogMessage, $localizeException->getLogMessage());

        $this->assertSame($cause, $localizeException->getPrevious());
    }
开发者ID:rafaelstz,项目名称:magento2,代码行数:30,代码来源:NoSuchEntityExceptionTest.php

示例2: testConstructor

 public function testConstructor()
 {
     $exception = new NoSuchEntityException();
     $this->assertEquals('No such entity.', $exception->getRawMessage());
     $this->assertEquals('No such entity.', $exception->getMessage());
     $this->assertEquals('No such entity.', $exception->getLogMessage());
     $exception = new NoSuchEntityException(new Phrase(NoSuchEntityException::MESSAGE_SINGLE_FIELD, ['fieldName' => 'field', 'fieldValue' => 'value']));
     $this->assertEquals('No such entity with field = value', $exception->getMessage());
     $this->assertEquals(NoSuchEntityException::MESSAGE_SINGLE_FIELD, $exception->getRawMessage());
     $this->assertEquals('No such entity with field = value', $exception->getLogMessage());
     $exception = new NoSuchEntityException(new Phrase(NoSuchEntityException::MESSAGE_DOUBLE_FIELDS, ['fieldName' => 'field1', 'fieldValue' => 'value1', 'field2Name' => 'field2', 'field2Value' => 'value2']));
     $this->assertEquals(NoSuchEntityException::MESSAGE_DOUBLE_FIELDS, $exception->getRawMessage());
     $this->assertEquals('No such entity with field1 = value1, field2 = value2', $exception->getMessage());
     $this->assertEquals('No such entity with field1 = value1, field2 = value2', $exception->getLogMessage());
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:15,代码来源:NoSuchEntityExceptionTest.php

示例3: testConstructor

 public function testConstructor()
 {
     $exception = new NoSuchEntityException();
     $this->assertEquals('No such entity.', $exception->getRawMessage());
     $this->assertEquals('No such entity.', $exception->getMessage());
     $this->assertEquals('No such entity.', $exception->getLogMessage());
     $exception = new NoSuchEntityException(new Phrase('No such entity with %fieldName = %fieldValue', ['fieldName' => 'field', 'fieldValue' => 'value']));
     $this->assertEquals('No such entity with field = value', $exception->getMessage());
     $this->assertEquals('No such entity with %fieldName = %fieldValue', $exception->getRawMessage());
     $this->assertEquals('No such entity with field = value', $exception->getLogMessage());
     $exception = new NoSuchEntityException(new Phrase('No such entity with %fieldName = %fieldValue, %field2Name = %field2Value', ['fieldName' => 'field1', 'fieldValue' => 'value1', 'field2Name' => 'field2', 'field2Value' => 'value2']));
     $this->assertEquals('No such entity with %fieldName = %fieldValue, %field2Name = %field2Value', $exception->getRawMessage());
     $this->assertEquals('No such entity with field1 = value1, field2 = value2', $exception->getMessage());
     $this->assertEquals('No such entity with field1 = value1, field2 = value2', $exception->getLogMessage());
 }
开发者ID:Doability,项目名称:magento2dev,代码行数:15,代码来源:NoSuchEntityExceptionTest.php


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