| 1 | <?php |
||
| 15 | class UriFrontendTest extends UnitTestCase |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @test |
||
| 20 | */ |
||
| 21 | public function cacheIdentifierIsAlwaysValid() |
||
| 22 | { |
||
| 23 | $dbBackend = new Typo3DatabaseBackend('Production'); |
||
| 24 | $cacheFrontend = new UriFrontend('test', $dbBackend); |
||
| 25 | $this->assertEquals(true, $cacheFrontend->isValidEntryIdentifier('Strange code here')); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |