ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCacheTest.php
Go to the documentation of this file.
1 <?php
2 
20 
26 class ilCacheTest extends TestCase
27 {
28  // PHP8-Review: Redundant method override
29  protected function setUp(): void
30  {
31  parent::setUp();
32  }
33 
34  protected function tearDown(): void
35  {
36  }
37 
41  public function testSetExpires()
42  {
43  $ex_cache = new ilExampleCache();
44 
45  $this->assertEquals(
46  5,
47  $ex_cache->getExpiresAfter()
48  );
49  }
50 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Test cache.
Definition: ilCacheTest.php:26
testSetExpires()
Test set expires.
Definition: ilCacheTest.php:41