/**
  * @test
  */
 public function shouldBeAbleToReadConfigAsJSON()
 {
     // given
     $client = new Client();
     // when
     $table = $client->configParser()->getTableName();
     // then
     $this->assertEquals("Client", $table);
 }