/**
  * Sets up our client with logger before each test
  */
 public function setUp()
 {
     $this->client = new Client(['debug' => true, 'key' => $_SERVER['BBY_API_KEY']]);
     $this->client->setLogger(new NullLogger());
 }