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


PHP Stat::deleteAll方法代码示例

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


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

示例1: tearDown

 protected function tearDown()
 {
     CharClass::deleteAll();
     Character::deleteAll();
     Race::deleteAll();
     Skill::deleteAll();
     Stat::deleteAll();
     Description::deleteAll();
     Background::deleteAll();
 }
开发者ID:civilianemail,项目名称:dnd,代码行数:10,代码来源:FinalizeTest.php

示例2: testDeleteAll

 function testDeleteAll()
 {
     //Arrange
     $str = 2;
     $dex = 2;
     $con = 2;
     $intel = 2;
     $wis = 2;
     $cha = 2;
     $init = 2;
     $max_hp = 2;
     $speed = 2;
     $ac = 2;
     $acrobatics = 2;
     $arcana = 2;
     $animal_handling = 2;
     $athletics = 2;
     $deception = 2;
     $history = 2;
     $insight = 2;
     $intimidation = 2;
     $investigation = 2;
     $medicine = 2;
     $nature = 2;
     $perception = 2;
     $performance = 2;
     $persuasion = 2;
     $proficiency = 2;
     $religion = 2;
     $sleight_of_hand = 2;
     $stealth = 2;
     $survival = 2;
     $test_stat = new Stat($ac, $acrobatics, $animal_handling, $arcana, $athletics, $cha, $con, $deception, $dex, $history, $init, $insight, $intel, $intimidation, $investigation, $max_hp, $medicine, $nature, $perception, $performance, $persuasion, $proficiency, $religion, $speed, $sleight_of_hand, $stealth, $str, $survival, $wis);
     $test_stat->save();
     $str2 = 2;
     $dex2 = 2;
     $con2 = 2;
     $int2 = 2;
     $wis2 = 2;
     $cha2 = 2;
     $init2 = 2;
     $max_hp2 = 2;
     $speed2 = 2;
     $ac2 = 2;
     $acrobatics2 = 2;
     $arcana2 = 2;
     $animal_handling2 = 2;
     $athletics2 = 2;
     $deception2 = 2;
     $history2 = 2;
     $insight2 = 2;
     $intimidation2 = 2;
     $investigation2 = 2;
     $medicine2 = 2;
     $nature2 = 2;
     $perception2 = 2;
     $performance2 = 2;
     $persuasion2 = 2;
     $proficiency2 = 2;
     $religion2 = 2;
     $sleight_of_hand2 = 2;
     $stealth2 = 2;
     $survival2 = 2;
     $test_stat2 = new Stat($ac2, $acrobatics2, $animal_handling2, $arcana2, $athletics2, $cha2, $con2, $deception2, $dex2, $history2, $init2, $insight2, $int2, $intimidation2, $investigation2, $max_hp2, $medicine2, $nature2, $perception2, $performance2, $persuasion2, $proficiency2, $religion2, $speed2, $sleight_of_hand2, $stealth2, $str2, $survival2, $wis2);
     $test_stat2->save();
     //Act
     Stat::deleteAll();
     //Assert
     $result = Stat::getAll();
     $this->assertEquals([], $result);
 }
开发者ID:civilianemail,项目名称:dnd,代码行数:71,代码来源:StatTest.php


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