aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/Exception/PaymentRequiredTest.php
blob: 42775a3134804f8963221305df2e97828c3ba24b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace Sabre\DAV\Exception;

class PaymentRequiredTest extends \PHPUnit\Framework\TestCase
{
    public function testGetHTTPCode()
    {
        $ex = new PaymentRequired();
        $this->assertEquals(402, $ex->getHTTPCode());
    }
}