예제 #1
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     $contexts = $this->modx->getCollection('modContext', array('key:LIKE' => '%unittest%'));
     /** @var modContext $ctx */
     foreach ($contexts as $ctx) {
         $ctx->remove();
     }
 }
예제 #2
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     /** @var modCategory $category */
     $categories = $this->modx->getCollection('modCategory', array('category:LIKE' => 'UnitTest%'));
     foreach ($categories as $category) {
         $category->remove();
     }
     $this->modx->error->reset();
 }
예제 #3
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     $propertySets = $this->modx->getCollection('modPropertySet', array('name:LIKE' => '%UnitTest%'));
     /** @var modPropertySet $propertySet */
     foreach ($propertySets as $propertySet) {
         $propertySet->remove();
     }
     $this->modx->error->reset();
 }
예제 #4
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     $plugins = $this->modx->getCollection('modPlugin', array('name:LIKE' => '%UnitTest%'));
     /** @var modPlugin $plugin */
     foreach ($plugins as $plugin) {
         $plugin->remove();
     }
     $this->modx->error->reset();
 }
예제 #5
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     $templates = $this->modx->getCollection('modTemplate', array('templatename:LIKE' => '%UnitTest%'));
     /** @var modTemplate $template */
     foreach ($templates as $template) {
         $template->remove();
     }
     $this->modx->error->reset();
 }
예제 #6
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     if ($this->modx instanceof modX) {
         $resources = $this->modx->getCollection('modResource', array('pagetitle:LIKE' => '%Unit Test Resource%'));
         /** @var modResource $resource */
         foreach ($resources as $resource) {
             $resource->remove();
         }
     }
 }
예제 #7
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     /** @var modNamespace $namespace */
     $namespace = $this->modx->getObject('modNamespace', array('name' => 'unittest'));
     $namespace->remove();
     $actions = $this->modx->getCollection('modAction', array('namespace' => 'unittest'));
     /** @var modAction $action */
     foreach ($actions as $action) {
         $action->remove();
     }
     $this->modx->error->reset();
 }
예제 #8
0
 public function tearDown()
 {
     parent::tearDown();
     /** @var modResource $resource */
     $resource = $this->modx->getObject('modResource', array('pagetitle' => 'Unit Test Resource'));
     if ($resource) {
         $resource->remove();
     }
     $resource = $this->modx->getObject('modResource', array('pagetitle' => 'Unit Test Child Resource'));
     if ($resource) {
         $resource->remove();
     }
 }
예제 #9
0
 /**
  * Cleanup data after this test.
  */
 public function tearDown()
 {
     parent::tearDown();
     /** @var modContext $ctx */
     $ctx = $this->modx->getObject('modContext', 'unittest');
     if ($ctx) {
         $ctx->remove();
     }
     $settings = $this->modx->getCollection('modContextSetting', array('context_key' => 'unittest'));
     /** @var modContextSetting $setting */
     foreach ($settings as $setting) {
         $setting->remove();
     }
 }
예제 #10
0
 /**
  * Cleanup data after each test.
  */
 public function tearDown()
 {
     parent::tearDown();
     $chunks = $this->modx->getCollection('modChunk', array('name:LIKE' => '%UnitTest%'));
     /** @var modChunk $chunk */
     foreach ($chunks as $chunk) {
         $chunk->remove();
     }
     /** @var modCategory $category */
     $category = $this->modx->getObject('modCategory', array('category' => 'UnitTestChunks'));
     if ($category) {
         $category->remove();
     }
     $this->modx->error->reset();
 }
예제 #11
0
 /**
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     /** @var modNamespace $namespace */
     $namespace = $this->modx->getObject('modNamespace', array('name' => 'unit-test'));
     if ($namespace) {
         $namespace->remove();
     }
     $actions = $this->modx->getCollection('modAction', array('namespace' => 'unit-test'));
     /** @var modAction $action */
     foreach ($actions as $action) {
         $action->remove();
     }
     $this->modx->setOption('request_param_alias', 'q');
     $this->modx->setOption('request_param_id', 'id');
     $this->modx->setOption('site_start', 1);
     $this->modx->setOption('friendly_urls', true);
     $this->modx->setOption('container_suffix', '/');
 }
예제 #12
0
 public function tearDown()
 {
     parent::tearDown();
     /* Remove test categories */
     $category = $this->modx->getIterator('modResource', array('pagetitle:LIKE' => '%UnitTest%'));
     /** @var msCategory $cat */
     foreach ($category as $cat) {
         $cat->remove();
     }
     $this->modx->query("ALTER TABLE " . $this->modx->getTableName('msCategory') . " AUTO_INCREMENT = 0;");
     /* Remove test options */
     $objs = $this->modx->getIterator('msOption', array('key:LIKE' => '%UnitTest%'));
     /** @var xPDOObject $obj */
     foreach ($objs as $obj) {
         $obj->remove();
     }
     $this->modx->query("ALTER TABLE " . $this->modx->getTableName('msOption') . " AUTO_INCREMENT = 0;");
     $this->modx->query("ALTER TABLE " . $this->modx->getTableName('msProductData') . " AUTO_INCREMENT = 0;");
     $this->modx->query("ALTER TABLE " . $this->modx->getTableName('msCategoryOption') . " AUTO_INCREMENT = 0;");
     $this->modx->query("ALTER TABLE " . $this->modx->getTableName('msProductOption') . " AUTO_INCREMENT = 0;");
 }
예제 #13
0
 public function tearDown()
 {
     parent::tearDown();
     $this->template = null;
 }
예제 #14
0
 public function tearDown()
 {
     parent::tearDown();
     $this->tv = null;
 }
예제 #15
0
 public function tearDown()
 {
     parent::tearDown();
     $this->controller = null;
 }
예제 #16
0
 public function tearDown()
 {
     parent::tearDown();
     $this->processor = null;
 }
예제 #17
0
 public function tearDown()
 {
     parent::tearDown();
     $this->plugin = null;
 }
예제 #18
0
 public function tearDown()
 {
     parent::tearDown();
     $this->source = null;
 }
예제 #19
0
 public function tearDown()
 {
     parent::tearDown();
     $this->snippet->remove();
     $this->snippet = null;
 }
예제 #20
0
 /**
  * Ensure that the error class is reset on each load
  */
 public function tearDown()
 {
     parent::tearDown();
     $this->modx->services['error'] = null;
     $this->modx->error = null;
 }
예제 #21
0
 public function tearDown()
 {
     parent::tearDown();
     $this->modx->placeholders = array();
 }