function setUp()
 {
     parent::setup();
     self::$config = I2CE_MagicData::instance("config");
     self::$store_sysv = new I2CE_MagicDataStorageSysV("ManageFlying_config");
     self::$config->addStorage(self::$store_sysv);
 }
 function setUp()
 {
     parent::setUp();
     I2CE::setupFileSearch();
     self::$c = new I2CE_Configurator();
     self::$c->resetCheckedPaths();
 }
 function setUp()
 {
     parent::setup();
     I2CE::setupFileSearch();
     $store = new I2CE_MagicDataStorageMem();
     self::$md = TestMagicDataTearDown::instance("config");
     self::$md->addStorage($store);
     I2CE::setConfig(self::$md);
     self::$c = new I2CE_Configurator(self::$md);
     self::$c->resetCheckedPaths();
 }
 function setUp()
 {
     parent::setUp();
     self::$fs = new I2CE_FileSearch();
 }
 function tearDown()
 {
     parent::tearDown();
     self::$mdt = NULL;
 }
 protected function setUp()
 {
     self::$errors = array();
     self::$not_errors = array();
     I2CE::pushErrorHandler(array(__CLASS__, "errorHandler"));
 }
 function tearDown()
 {
     chdir(self::$startDir);
     parent::tearDown();
 }