‪TYPO3CMS  10.4
AbstractDriverTest.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
20 
25 {
29  protected ‪$subject;
30 
31  protected function ‪setUp(): void
32  {
33  parent::setUp();
34  $this->subject = $this->‪createDriver();
35  }
39  protected function ‪createDriver()
40  {
41  return $this->getMockForAbstractClass(AbstractDriver::class, [], '', false);
42  }
43 
48  {
49  self::assertTrue($this->subject->isCaseSensitiveFileSystem());
50  }
51 }
‪TYPO3\CMS\Core\Tests\Unit\Resource\BaseTestCase
Definition: BaseTestCase.php:29
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver\AbstractDriverTest\$subject
‪TYPO3 CMS Core Resource Driver AbstractDriver $subject
Definition: AbstractDriverTest.php:28
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver\AbstractDriverTest\isCaseSensitiveFileSystemReturnsTrueIfNothingIsConfigured
‪isCaseSensitiveFileSystemReturnsTrueIfNothingIsConfigured()
Definition: AbstractDriverTest.php:46
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver
Definition: AbstractDriverTest.php:16
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver\AbstractDriverTest\createDriver
‪TYPO3 CMS Core Resource Driver AbstractDriver createDriver()
Definition: AbstractDriverTest.php:38
‪TYPO3\CMS\Core\Resource\Driver\AbstractDriver
Definition: AbstractDriver.php:25
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver\AbstractDriverTest
Definition: AbstractDriverTest.php:25
‪TYPO3\CMS\Core\Tests\Unit\Resource\Driver\AbstractDriverTest\setUp
‪setUp()
Definition: AbstractDriverTest.php:30