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