streams/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php
2016-05-28 17:46:24 +02:00

30 lines
567 B
PHP

<?php
namespace Sabre\DAV;
class ExceptionTest extends \PHPUnit_Framework_TestCase {
function testStatus() {
$e = new Exception();
$this->assertEquals(500, $e->getHTTPCode());
}
function testExceptionStatuses() {
$c = [
'Sabre\\DAV\\Exception\\NotAuthenticated' => 401,
'Sabre\\DAV\\Exception\\InsufficientStorage' => 507,
];
foreach ($c as $class => $status) {
$obj = new $class();
$this->assertEquals($status, $obj->getHTTPCode());
}
}
}