/**
  * @test
  */
 public function I_can_get_highlander_modifiers()
 {
     $racesTable = new RacesTable();
     $modifiers = $racesTable->getHighlanderModifiers();
     self::assertEquals([PropertyCode::STRENGTH => 1, PropertyCode::AGILITY => 0, PropertyCode::KNACK => 0, PropertyCode::WILL => 1, PropertyCode::INTELLIGENCE => -1, PropertyCode::CHARISMA => -1, PropertyCode::TOUGHNESS => 0, PropertyCode::HEIGHT_IN_CM => 180.0, PropertyCode::WEIGHT_IN_KG => 80.0, PropertyCode::SIZE => 0, PropertyCode::SENSES => 0, PropertyCode::REMARKABLE_SENSE => '', PropertyCode::INFRAVISION => false, PropertyCode::NATIVE_REGENERATION => false, PropertyCode::REQUIRES_DM_AGREEMENT => false, PropertyCode::AGE => 14], $modifiers);
 }