mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-03 14:32:40 +00:00
Remove debug code
This commit is contained in:
parent
849294d082
commit
b8445fe8a7
1 changed files with 0 additions and 13 deletions
|
@ -17,19 +17,6 @@ trait TestingHelpers {
|
||||||
$this->expectException($class);
|
$this->expectException($class);
|
||||||
$this->expectExceptionCode($code);
|
$this->expectExceptionCode($code);
|
||||||
}
|
}
|
||||||
|
|
||||||
function assertExc(string $msg, string $prefix = "", string $type = "Exception") {
|
|
||||||
$class = NS_BASE . ($prefix !== "" ? str_replace("/", "\\", $prefix) . "\\" : "") . $type;
|
|
||||||
$msgID = ($prefix !== "" ? $prefix . "/" : "") . $type. ".$msg";
|
|
||||||
if(array_key_exists($msgID, Exception::CODES)) {
|
|
||||||
$code = Exception::CODES[$msgID];
|
|
||||||
} else {
|
|
||||||
$code = 0;
|
|
||||||
}
|
|
||||||
echo $class."\n";
|
|
||||||
$this->expectException($class);
|
|
||||||
$this->expectExceptionCode($code);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
trait LanguageTestingHelpers {
|
trait LanguageTestingHelpers {
|
||||||
|
|
Loading…
Reference in a new issue