aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php')
-rw-r--r--vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php b/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php
deleted file mode 100644
index 7237aea0d..000000000
--- a/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Sabre\DAV;
-
-class ExceptionTest extends \PHPUnit\Framework\TestCase
-{
- public function testStatus()
- {
- $e = new Exception();
- $this->assertEquals(500, $e->getHTTPCode());
- }
-
- public 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());
- }
- }
-}