// /** * Created by PhpStorm. * User: Eric * Date: 03/11/2017 * Time: 09:55 */ // --------------- Mock class utils { public static function GetCachePath() { return APPROOT.'data/cache-unittest/'; } } class UnitConfig { public function Get($sPropCode) { return UNIT_MAX_CACHE_FILES; } } class MetaModel { public static function GetConfig() { return new UnitConfig; } } // --------------- End Mock