1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/Exception/TestException.php
2017-03-28 19:58:20 -04:00

64 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\Arsse;
class TestException extends \PHPUnit\Framework\TestCase {
use Test\Tools;
function setUp() {
$this->clearData(false);
$m = $this->getMockBuilder(Lang::class)->setMethods(['msg'])->getMock();
$m->expects($this->any())->method("msg")->with($this->anything(), $this->anything())->will($this->returnValue(""));
Data::$l = $m;
}
function tearDown() {
$this->clearData(true);
}
function testBaseClass() {
$this->assertException("unknown");
throw new Exception("unknown");
}
/**
* @depends testBaseClass
*/
function testBaseClassWithoutMessage() {
$this->assertException("unknown");
throw new Exception();
}
/**
* @depends testBaseClass
*/
function testDerivedClass() {
$this->assertException("fileMissing", "Lang");
throw new Lang\Exception("fileMissing");
}
/**
* @depends testDerivedClass
*/
function testDerivedClassWithMessageParameters() {
$this->assertException("fileMissing", "Lang");
throw new Lang\Exception("fileMissing", "en");
}
/**
* @depends testBaseClass
*/
function testBaseClassWithUnknownCode() {
$this->assertException("uncoded");
throw new Exception("testThisExceptionMessageDoesNotExist");
}
/**
* @depends testBaseClassWithUnknownCode
*/
function testDerivedClassWithMissingMessage() {
$this->assertException("uncoded");
throw new Lang\Exception("testThisExceptionMessageDoesNotExist");
}
}