public function testFakeApiKey()
 {
     try {
         $tt = new RottenApi(['apiKey' => 'djsfjsdfjs']);
         print_r($tt->getInTheatreMovies());
     } catch (TomatoesApiProblem $except) {
         $this->assertEquals('Problem with Tomatoes API or APIkey not valid', $except->getMessage());
     }
 }