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


PHP CiviUnitTestCase::_dbName方法代码示例

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


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

示例1: __construct

 /**
  *  Constructor.
  *
  *  Because we are overriding the parent class constructor, we
  *  need to show the same arguments as exist in the constructor of
  *  PHPUnit_Framework_TestCase, since
  *  PHPUnit_Framework_TestSuite::createTest() creates a
  *  ReflectionClass of the Test class and checks the constructor
  *  of that class to decide how to set up the test.
  *
  * @param string $name
  * @param array $data
  * @param string $dataName
  */
 public function __construct($name = NULL, array $data = array(), $dataName = '')
 {
     parent::__construct($name, $data, $dataName);
     // we need full error reporting
     error_reporting(E_ALL & ~E_NOTICE);
     self::$_dbName = self::getDBName();
     // also load the class loader
     require_once 'CRM/Core/ClassLoader.php';
     CRM_Core_ClassLoader::singleton()->register();
     if (function_exists('_civix_phpunit_setUp')) {
         // FIXME: loosen coupling
         _civix_phpunit_setUp();
     }
 }
开发者ID:nielosz,项目名称:civicrm-core,代码行数:28,代码来源:CiviUnitTestCase.php

示例2: __construct

 /**
  *  Constructor.
  *
  *  Because we are overriding the parent class constructor, we
  *  need to show the same arguments as exist in the constructor of
  *  PHPUnit_Framework_TestCase, since
  *  PHPUnit_Framework_TestSuite::createTest() creates a
  *  ReflectionClass of the Test class and checks the constructor
  *  of that class to decide how to set up the test.
  *
  * @param string $name
  * @param array $data
  * @param string $dataName
  */
 public function __construct($name = NULL, array $data = array(), $dataName = '')
 {
     parent::__construct($name, $data, $dataName);
     // we need full error reporting
     error_reporting(E_ALL & ~E_NOTICE);
     if (!empty($GLOBALS['mysql_db'])) {
         self::$_dbName = $GLOBALS['mysql_db'];
     } else {
         self::$_dbName = 'civicrm_tests_dev';
     }
     //  create test database
     self::$utils = new Utils($GLOBALS['mysql_host'], $GLOBALS['mysql_port'], $GLOBALS['mysql_user'], $GLOBALS['mysql_pass']);
     // also load the class loader
     require_once 'CRM/Core/ClassLoader.php';
     CRM_Core_ClassLoader::singleton()->register();
     if (function_exists('_civix_phpunit_setUp')) {
         // FIXME: loosen coupling
         _civix_phpunit_setUp();
     }
 }
开发者ID:BorislavZlatanov,项目名称:civicrm-core,代码行数:34,代码来源:CiviUnitTestCase.php


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