aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/FileTest.php
blob: 50f17a7dd805bd6975eb64d78881c51c2452cfc9 (plain) (tree)
1
2
3
4
5
6
7
8

     

                        

                                  

                                  



                                   
                                        
                                                     
 
                        

     
                              
     
                                        
     
 
<?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();
    }
}