Reset cache driver after unit test

This commit is contained in:
Kijin Sung 2023-11-30 23:57:34 +09:00
parent a294783261
commit a36ecab8b4

View file

@ -14,7 +14,8 @@ class CacheTest extends \Codeception\Test\Unit
public function _after()
{
$driver = Rhymix\Framework\Cache::clearAll();
Rhymix\Framework\Cache::clearAll();
Rhymix\Framework\Cache::init(array('dummy'));
}
public function testInit()