当前位置: 首页>>代码示例>>PHP>>正文


PHP MODxTestCase类代码示例

本文整理汇总了PHP中MODxTestCase的典型用法代码示例。如果您正苦于以下问题:PHP MODxTestCase类的具体用法?PHP MODxTestCase怎么用?PHP MODxTestCase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了MODxTestCase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setUp

 public function setUp()
 {
     parent::setUp();
     $this->modx->loadClass('mail.modMail', MODX_CORE_PATH . 'model/modx/', true, true);
     $this->mail = $this->getMockForAbstractClass('modMail', array(&$this->modx));
     $this->mail->expects($this->any())->method('_getMailer')->will($this->returnValue(true));
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:7,代码来源:modMailTest.php

示例2: setUp

 public function setUp()
 {
     parent::setUp();
     $this->modx->getParser();
     $this->tag = new modPlaceholderTag($this->modx);
     $this->tag->setCacheable(false);
     $this->tag->set('name', 'utp');
 }
开发者ID:kuvj,项目名称:revo,代码行数:8,代码来源:modOutputFilterTest.php

示例3: setUp

 /**
  * Setup some basic data for this test.
  */
 public function setUp()
 {
     parent::setUp();
     /** @var modSnippet $snippet */
     $snippet = $this->modx->newObject('modSnippet');
     $snippet->fromArray(array('name' => 'UnitTestSnippet'));
     $snippet->save();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:11,代码来源:SnippetTest.php

示例4: setUp

 /**
  * Setup some basic data for this test.
  */
 public function setUp()
 {
     parent::setUp();
     /** @var modTemplateVar $tv */
     $tv = $this->modx->newObject('modTemplateVar');
     $tv->fromArray(array('name' => 'UnitTestTv'));
     $tv->save();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:11,代码来源:TemplateVarTest.php

示例5: setUp

 /**
  * Load some utility classes this case uses
  * @return void
  */
 public function setUp()
 {
     parent::setUp();
     $this->modx->loadClass('modDashboard');
     $this->modx->loadClass('modManagerController', MODX_CORE_PATH . 'model/modx/', true, true);
     $this->modx->loadClass('modManagerControllerDeprecated', MODX_CORE_PATH . 'model/modx/', true, true);
     require_once MODX_MANAGER_PATH . 'controllers/default/welcome.class.php';
 }
开发者ID:ChrstnMgcn,项目名称:revolution,代码行数:12,代码来源:modDashboardTest.php

示例6: setUp

 public function setUp()
 {
     parent::setUp();
     try {
     } catch (Exception $e) {
         $this->modx->log(modX::LOG_LEVEL_ERROR, $e->getMessage(), '', __METHOD__, __FILE__, __LINE__);
     }
 }
开发者ID:jiripavlicek,项目名称:revolution,代码行数:8,代码来源:DirectoryTest.php

示例7: tearDown

 /**
  * 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();
     }
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:12,代码来源:ContextTest.php

示例8: tearDown

 /**
  * 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();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:13,代码来源:CategoryTest.php

示例9: tearDown

 /**
  * 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();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:13,代码来源:PropertySetTest.php

示例10: tearDown

 /**
  * 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();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:13,代码来源:PluginTest.php

示例11: tearDown

 /**
  * 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();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:13,代码来源:TemplateTest.php

示例12: setUp

 /**
  * Load some utility classes this case uses
  * @return void
  */
 public function setUp()
 {
     parent::setUp();
     $this->modx->loadClass('modDashboard');
     $this->modx->loadClass('modDashboardWidget');
     $this->modx->loadClass('modManagerController', MODX_CORE_PATH . 'model/modx/', true, true);
     $this->modx->loadClass('modManagerControllerDeprecated', MODX_CORE_PATH . 'model/modx/', true, true);
     require_once MODX_MANAGER_PATH . 'controllers/default/welcome.class.php';
     $this->widget = $this->modx->newObject('modDashboardWidget');
     $this->widget->fromArray(array('name' => 'w_recentlyeditedresources', 'description' => 'w_recentlyeditedresources_desc', 'type' => 'file', 'size' => 'half', 'content' => '[[++manager_path]]controllers/default/dashboard/widget.grid-rer.php', 'namespace' => 'core', 'lexicon' => 'core:dashboards'));
 }
开发者ID:rossng,项目名称:revolution,代码行数:15,代码来源:modDashboardWidgetTest.php

示例13: tearDown

 /**
  * 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();
         }
     }
 }
开发者ID:rossng,项目名称:revolution,代码行数:14,代码来源:ResourceCreateTest.php

示例14: tearDown

 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();
     }
 }
开发者ID:ChrstnMgcn,项目名称:revolution,代码行数:13,代码来源:MakeUrlTest.php

示例15: tearDown

 /**
  * 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();
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:16,代码来源:ActionTest.php


注:本文中的MODxTestCase类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。