/**
  * @covers BinaryBeast::login
  */
 public function testLogin()
 {
     $this->assertTrue($this->object->login('*****@*****.**', 'password', true), 'Email/Password login failed');
     //Only testing, keep using the api key as it is the standard
     $this->object->login(null, null, false);
 }