/**
  * @depends testReturnsAuthResponseForOkayResponse
  * @param AuthResponse $authResponse
  */
 public function testSetsUserPushIdInAuthResponseForOkResponse(AuthResponse $authResponse)
 {
     $this->assertEquals("User Push Id", $authResponse->getUserPushId());
 }
 /**
  * @depends testWhenPostDataIsForAuthYouReceiveAuthResponse
  */
 public function testWhenPostDataIsForAuthTheAuthResponseHasTheCorrectUserPushId(AuthResponse $authResponse)
 {
     $this->assertEquals("User Push ID", $authResponse->getUserPushId());
 }
 public function testUserPushId()
 {
     $this->assertEquals("UserPushID", $this->entity->getUserPushId());
 }