Changeset 2306 for trunk/tests
- Timestamp:
- 10/07/2007 03:24:35 PM (15 months ago)
- Files:
-
- 1 modified
-
trunk/tests/unit/Caching/TAPCCacheTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/unit/Caching/TAPCCacheTest.php
r1998 r2306 21 21 self::markTestSkipped("'$runtimePath' is writable"); 22 22 } 23 $this->app = new TApplication($basePath); 24 self::$cache = new TAPCCache(); 25 self::$cache->init(null); 23 try { 24 $this->app = new TApplication($basePath); 25 self::$cache = new TAPCCache(); 26 self::$cache->init(null); 27 } catch(TConfigurationException $e) { 28 self::markTestSkipped($e->getMessage()); 29 } 30 26 31 } 27 32 }
