本文整理汇总了PHP中Common_TestCase::setUp方法的典型用法代码示例。如果您正苦于以下问题:PHP Common_TestCase::setUp方法的具体用法?PHP Common_TestCase::setUp怎么用?PHP Common_TestCase::setUp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Common_TestCase
的用法示例。
在下文中一共展示了Common_TestCase::setUp方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
protected function setUp()
{
parent::setUp();
$masterData = new SC_DB_MasterData_Ex();
$this->arrAllowedTag = $masterData->getMasterData('mtb_allowed_tag');
$this->target_func = 'HTML_TAG_CHECK';
}
示例2: setUp
protected function setUp()
{
global $DB;
parent::setUp();
$DB->connect();
self::restore_database();
$DB->query("UPDATE `glpi_rules`\n SET `is_active`='0'\n WHERE `sub_type`='PluginFusioninventoryInventoryRuleImport'");
// Add a rule to ignore import
// Create rule for import into unknown devices
$rulecollection = new PluginFusioninventoryInventoryRuleImportCollection();
$input = array();
$input['is_active'] = 1;
$input['name'] = 'Ignore import';
$input['match'] = 'AND';
$input['sub_type'] = 'PluginFusioninventoryInventoryRuleImport';
$input['ranking'] = 200;
$rule_id = $rulecollection->add($input);
// Add criteria
$rule = $rulecollection->getRuleClass();
$rulecriteria = new RuleCriteria(get_class($rule));
$input = array();
$input['rules_id'] = $rule_id;
$input['criteria'] = "name";
$input['pattern'] = '*';
$input['condition'] = 0;
$rulecriteria->add($input);
// Add action
$ruleaction = new RuleAction(get_class($rule));
$input = array();
$input['rules_id'] = $rule_id;
$input['action_type'] = 'assign';
$input['field'] = '_ignore_import';
$input['value'] = '1';
$ruleaction->add($input);
}
示例3: setUp
protected function setUp()
{
parent::setUp();
$this->old_reporting_level = error_reporting();
error_reporting($this->old_reporting_level ^ (E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE));
$this->arrForm = array('form' => array(0 => 'A', 1 => "B", 2 => 'C'));
$this->objErr = new SC_CheckError_Ex($this->arrForm);
}
示例4: setUp
protected function setUp()
{
parent::setUp();
$this->objDate = new SC_Date_Ex();
$objQuery = SC_Query_Ex::getSingletonInstance();
//休日を登録
$holiday = array(array('holiday_id' => '1', 'title' => 'TEST HOLIDAY1', 'month' => '2', 'day' => '14', 'rank' => '1', 'creator_id' => '1', 'create_date' => '2013-02-14 11:22:33', 'update_date' => '2013-02-14 22:11:33', 'del_flg' => '0'), array('holiday_id' => '2', 'title' => 'TEST HOLIDAY2', 'month' => '3', 'day' => '26', 'rank' => '2', 'creator_id' => '1', 'create_date' => '2013-02-15 11:22:33', 'update_date' => '2013-02-16 22:11:33', 'del_flg' => '0'));
//休みの曜日を登録
$baseInfo = array('id' => '1', 'regular_holiday_ids' => '0|6', 'update_date' => '2013-02-14 22:11:33');
$objQuery->delete('dtb_holiday');
$objQuery->delete('dtb_baseinfo');
foreach ($holiday as $key => $item) {
$objQuery->insert('dtb_holiday', $item);
}
$objQuery->insert('dtb_baseinfo', $baseInfo);
}
示例5: setUp
protected function setUp()
{
parent::setUp();
self::restore_database();
// Add some computers
$computer = new Computer();
$pfAgent = new PluginFusioninventoryAgent();
$computer->add(array('name' => 'pc01', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 1, 'entities_id' => 0));
$computer->add(array('name' => 'pc02', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 2, 'entities_id' => 0));
$computer->add(array('name' => 'pc03', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 3, 'entities_id' => 0));
$computer->add(array('name' => 'pc04', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 4, 'entities_id' => 0));
$computer->add(array('name' => 'pc05', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 5, 'entities_id' => 0));
$computer->add(array('name' => 'pc06', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 6, 'entities_id' => 0));
$computer->add(array('name' => 'pc07', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 7, 'entities_id' => 0));
$computer->add(array('name' => 'pc08', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 8, 'entities_id' => 0));
$computer->add(array('name' => 'pc09', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 9, 'entities_id' => 0));
$computer->add(array('name' => 'pc10', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 10, 'entities_id' => 0));
$computer->add(array('name' => 'pc11', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 11, 'entities_id' => 0));
$computer->add(array('name' => 'pc12', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 12, 'entities_id' => 0));
$computer->add(array('name' => 'pc13', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 13, 'entities_id' => 0));
$computer->add(array('name' => 'srv01', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 14, 'entities_id' => 0));
$computer->add(array('name' => 'srv02', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 15, 'entities_id' => 0));
$computer->add(array('name' => 'srv03', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 16, 'entities_id' => 0));
$computer->add(array('name' => 'srv04', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 17, 'entities_id' => 0));
$computer->add(array('name' => 'srv05', 'entities_id' => 0));
$pfAgent->add(array('computers_id' => 18, 'entities_id' => 0));
}
示例6: setUp
protected function setUp()
{
parent::setUp();
}
示例7: setUp
protected function setUp()
{
parent::setUp();
$this->objDate = new SC_Date_Ex();
}
示例8: setUp
protected function setUp()
{
parent::setUp();
$this->setUpProductsClass();
}
示例9: setUp
protected function setUp()
{
parent::setUp();
$this->objSiteSession = new SC_SiteSession_Ex();
}
示例10: setUp
protected function setUp()
{
parent::setUp();
$masterData = new SC_DB_MasterData_Ex();
$this->arrAllowedTag = $masterData->getMasterData('mtb_allowed_tag');
}
示例11: setUp
protected function setUp()
{
parent::setUp();
$this->setUpClassCat();
}
示例12: setUp
protected function setUp()
{
parent::setUp();
$this->setUpAddress();
}
示例13: setUp
protected function setUp()
{
parent::setUp();
$this->target_func = 'EXIST_CHECK';
}
示例14: setUp
protected function setUp()
{
parent::setUp();
$this->su = new SC_SmartphoneUserAgent_Ex();
}