76 regels
1.8 KiB
PHP
76 regels
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*
|
||
|
* https://www.d3data.de
|
||
|
*
|
||
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
||
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
||
|
* @link https://www.oxidmodule.com
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace D3\DataWizard\tests\unit\Application\Model\Exceptions;
|
||
|
|
||
|
use D3\DataWizard\Application\Model\Exceptions\DebugException;
|
||
|
use D3\ModCfg\Tests\unit\d3ModCfgUnitTestCase;
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
|
||
|
class DebugExceptionTest extends d3ModCfgUnitTestCase
|
||
|
{
|
||
|
/** @var DebugException */
|
||
|
protected $_oModel;
|
||
|
|
||
|
/**
|
||
|
* @covers \D3\DataWizard\Application\Model\Exceptions\DebugException::__construct
|
||
|
* @test
|
||
|
* @throws \ReflectionException
|
||
|
*/
|
||
|
public function canConstruct()
|
||
|
{
|
||
|
$code = '500';
|
||
|
|
||
|
$exception = oxNew(\Exception::class);
|
||
|
|
||
|
/** @var DebugException|MockObject $modelMock */
|
||
|
$modelMock = $this->getMockBuilder(DebugException::class)
|
||
|
->disableOriginalConstructor()
|
||
|
->getMock();
|
||
|
|
||
|
$this->_oModel = $modelMock;
|
||
|
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'__construct',
|
||
|
['testMessage', $code, $exception]
|
||
|
);
|
||
|
|
||
|
$this->assertStringContainsString(
|
||
|
'DEBUG',
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getMessage'
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$this->assertEquals(
|
||
|
$code,
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getCode'
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$this->assertSame(
|
||
|
$exception,
|
||
|
$this->callMethod(
|
||
|
$this->_oModel,
|
||
|
'getPrevious'
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|