1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/TestException.php

71 lines
1.5 KiB
PHP
Raw Normal View History

2017-02-10 04:05:13 +00:00
<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
class TestException extends \PHPUnit\Framework\TestCase {
use TestingHelpers;
static function setUpBeforeClass() {
Lang::set("");
}
static function tearDownAfterClass() {
Lang::set(Lang::DEFAULT);
}
function testBaseClass() {
2017-02-10 04:05:13 +00:00
$this->assertException("unknown");
throw new Exception("unknown");
}
/**
* @depends testBaseClass
2017-02-10 04:05:13 +00:00
*/
function testBaseClassWithoutMessage() {
2017-02-10 04:05:13 +00:00
$this->assertException("unknown");
throw new Exception();
}
/**
* @depends testBaseClass
2017-02-10 04:05:13 +00:00
*/
function testDerivedClass() {
2017-02-10 04:05:13 +00:00
$this->assertException("fileMissing", "Lang");
throw new Lang\Exception("fileMissing");
}
/**
* @depends testDerivedClass
2017-02-10 04:05:13 +00:00
*/
function testDerivedClassWithMessageParameters() {
2017-02-10 04:05:13 +00:00
$this->assertException("fileMissing", "Lang");
throw new Lang\Exception("fileMissing", "en");
}
/**
* @depends testBaseClass
*/
function testBaseClassWithUnknownCode() {
$this->assertException("uncoded");
throw new Exception("testThisExceptionMessageDoesNotExist");
}
/**
* @depends testBaseClass
*/
function testBaseClassWithMissingMessage() {
$this->assertException("stringMissing", "Lang");
throw new Exception("invalid");
}
/**
* @depends testBaseClassWithUnknownCode
*/
function testDerivedClassWithMissingMessage() {
$this->assertException("uncoded");
throw new Lang\Exception("testThisExceptionMessageDoesNotExist");
}
2017-02-10 04:05:13 +00:00
}