/**
  * @test
  */
 public function I_can_get_common_orc_modifiers()
 {
     $racesTable = new RacesTable();
     $modifiers = $racesTable->getCommonOrcModifiers();
     self::assertEquals([PropertyCode::STRENGTH => 0, PropertyCode::AGILITY => 2, PropertyCode::KNACK => 0, PropertyCode::WILL => -1, PropertyCode::INTELLIGENCE => 0, PropertyCode::CHARISMA => -2, PropertyCode::TOUGHNESS => 0, PropertyCode::HEIGHT_IN_CM => 160.0, PropertyCode::WEIGHT_IN_KG => 60.0, PropertyCode::SIZE => -1, PropertyCode::SENSES => 1, PropertyCode::REMARKABLE_SENSE => PropertyCode::SMELL, PropertyCode::INFRAVISION => true, PropertyCode::NATIVE_REGENERATION => false, PropertyCode::REQUIRES_DM_AGREEMENT => true, PropertyCode::AGE => 10], $modifiers);
 }