/**
  * @test
  */
 public function I_can_get_goblin_modifiers()
 {
     $racesTable = new RacesTable();
     $modifiers = $racesTable->getGoblinModifiers();
     self::assertEquals([PropertyCode::STRENGTH => -1, PropertyCode::AGILITY => 2, PropertyCode::KNACK => 1, PropertyCode::WILL => -2, PropertyCode::INTELLIGENCE => 0, PropertyCode::CHARISMA => -1, PropertyCode::TOUGHNESS => 0, PropertyCode::HEIGHT_IN_CM => 150.0, PropertyCode::WEIGHT_IN_KG => 55.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 => 9], $modifiers);
 }