aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/FileTest.php
blob: 50f17a7dd805bd6975eb64d78881c51c2452cfc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

declare(strict_types=1);

namespace Sabre\DAV\Locks\Backend;

require_once 'Sabre/TestUtil.php';

class FileTest extends AbstractTest
{
    public function getBackend()
    {
        \Sabre\TestUtil::clearTempDir();
        $backend = new File(SABRE_TEMPDIR.'/lockdb');

        return $backend;
    }

    public function tearDown()
    {
        \Sabre\TestUtil::clearTempDir();
    }
}