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


PHP CiviSeleniumTestCase类代码示例

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


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

示例1: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     if (isset($this->nocms_contact_id)) {
         $deleteParams = array("id" => $this->nocms_contact_id, "skip_undelete" => 1);
         $res = $this->webtest_civicrm_api("Contact", "delete", $deleteParams);
         unset($this->nocms_contact_id);
     }
 }
开发者ID:archcidburnziso,项目名称:civicrm-core,代码行数:9,代码来源:RestTest.php

示例2: tearDown

 protected function tearDown()
 {
     if (!empty($this->old_api_keys)) {
         foreach ($this->old_api_keys as $cid => $apiKey) {
             $this->webtest_civicrm_api('Contact', 'create', array('id' => $cid, 'api_key' => $apiKey));
         }
     }
     parent::tearDown();
     if (isset($this->nocms_contact_id)) {
         $deleteParams = array("id" => $this->nocms_contact_id, "skip_undelete" => 1);
         $res = $this->webtest_civicrm_api("Contact", "delete", $deleteParams);
         unset($this->nocms_contact_id);
     }
 }
开发者ID:rajeshrhino,项目名称:civicrm-core,代码行数:14,代码来源:RestTest.php

示例3: setUp

 protected function setUp()
 {
     parent::setUp();
 }
开发者ID:FundingWorks,项目名称:civicrm-core,代码行数:4,代码来源:TagSetSearchTest.php

示例4: setUp

 function setUp()
 {
     parent::setUp();
     global $mandrillSettings;
     $mandrillSettings = array('username' => 'pradeep.nayak@jmaconsulting.biz', 'password' => '42bAi-rn5IyYRkRupiw-CQ');
 }
开发者ID:vakeesan26,项目名称:biz.jmaconsulting.mte,代码行数:6,代码来源:MteTest.php


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