/**
  * @test
  */
 public function I_get_headers_same_as_from_wounds_table()
 {
     $experiencesTable = new ExperiencesTable($woundsTable = new WoundsTable());
     self::assertEquals($woundsTable->getHeader(), $experiencesTable->getHeader());
 }
 /**
  * @test
  */
 public function I_can_get_header()
 {
     $woundsTable = new WoundsTable();
     self::assertEquals([['bonus', 'wounds']], $woundsTable->getHeader());
 }
 private function I_can_get_headers_same_as_from_wounds_table()
 {
     $experiencesTable = new FatigueTable($this->woundsTable);
     self::assertEquals($this->woundsTable->getHeader(), $experiencesTable->getHeader());
 }