TYPO3 CMS  TYPO3_6-2
AbstractDriverTest.php
Go to the documentation of this file.
1 <?php
3 
22 
26  protected $fixture;
27 
28 
29  public function setUp() {
30  parent::setUp();
31  $this->fixture = $this->createDriverFixture();
32  }
36  protected function createDriverFixture() {
37  return $this->getMockForAbstractClass('TYPO3\\CMS\\Core\\Resource\\Driver\\AbstractDriver', array(), '', FALSE);
38  }
39 
44  $this->assertTrue($this->fixture->isCaseSensitiveFileSystem());
45  }
46 }