/**
  * @test
  * @expectedException \DrdPlus\Professions\Exceptions\ProfessionNotFound
  */
 public function I_can_not_create_profession_by_unknown_code()
 {
     /** @var ProfessionCode|\Mockery\MockInterface $professionCode */
     $professionCode = $this->mockery(ProfessionCode::class);
     $professionCode->shouldReceive('getValue')->andReturn('muralist');
     Profession::getItByCode($professionCode);
 }
예제 #2
0
 /**
  * @return Thief|Profession
  */
 public static function getIt()
 {
     return parent::getIt();
 }
 /**
  * @param Profession $profession
  * @param string $skillType
  * @param Tables $tables
  * @return int
  */
 public function getSkillPoints(Profession $profession, $skillType, Tables $tables)
 {
     return $tables->getBackgroundSkillsTable()->getSkillPoints($this->getSpentBackgroundPoints(), $profession->getValue(), $skillType);
 }
 protected static function isProfessionPrimaryProperty(Profession $profession, $propertyCode)
 {
     return $profession->isPrimaryProperty($propertyCode);
 }