/**
  * @depends testReturnsAuthResponseForOkayResponse
  * @param AuthResponse $authResponse
  */
 public function testSetsDeviceIdInAuthResponseForOkResponse(AuthResponse $authResponse)
 {
     $this->assertEquals("Device ID", $authResponse->getDeviceId());
 }
 /**
  * @depends testWhenPostDataIsForAuthYouReceiveAuthResponse
  */
 public function testWhenPostDataIsForAuthTheAuthResponseHasTheCorrectDeviceId(AuthResponse $authResponse)
 {
     $this->assertEquals("Device ID", $authResponse->getDeviceId());
 }
 public function testDeviceId()
 {
     $this->assertEquals("DeviceID", $this->entity->getDeviceId());
 }