ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Sabre\DAV\FSExt\DirectoryTest Class Reference
+ Inheritance diagram for Sabre\DAV\FSExt\DirectoryTest:
+ Collaboration diagram for Sabre\DAV\FSExt\DirectoryTest:

Public Member Functions

 create ()
 
 testCreate ()
 
 testChildExistDot ()
 @expectedException \Sabre\DAV\Exception\Forbidden More...
 

Detailed Description

Definition at line 5 of file DirectoryTest.php.

Member Function Documentation

◆ create()

Sabre\DAV\FSExt\DirectoryTest::create ( )

Definition at line 7 of file DirectoryTest.php.

7 {
8
9 return new Directory(SABRE_TEMPDIR);
10
11 }

Referenced by Sabre\DAV\FSExt\DirectoryTest\testChildExistDot(), and Sabre\DAV\FSExt\DirectoryTest\testCreate().

+ Here is the caller graph for this function:

◆ testChildExistDot()

Sabre\DAV\FSExt\DirectoryTest::testChildExistDot ( )

@expectedException \Sabre\DAV\Exception\Forbidden

Definition at line 23 of file DirectoryTest.php.

23 {
24
25 $dir = $this->create();
26 $dir->childExists('..');
27
28 }

References Sabre\DAV\FSExt\DirectoryTest\create().

+ Here is the call graph for this function:

◆ testCreate()

Sabre\DAV\FSExt\DirectoryTest::testCreate ( )

Definition at line 13 of file DirectoryTest.php.

13 {
14
15 $dir = $this->create();
16 $this->assertEquals(basename(SABRE_TEMPDIR), $dir->getName());
17
18 }

References Sabre\DAV\FSExt\DirectoryTest\create().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: