本文整理汇总了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));
}
示例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');
}
示例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();
}
示例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();
}
示例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';
}
示例6: setUp
public function setUp()
{
parent::setUp();
try {
} catch (Exception $e) {
$this->modx->log(modX::LOG_LEVEL_ERROR, $e->getMessage(), '', __METHOD__, __FILE__, __LINE__);
}
}
示例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();
}
}
示例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();
}
示例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();
}
示例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();
}
示例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();
}
示例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'));
}
示例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();
}
}
}
示例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();
}
}
示例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();
}