/**
  * Method to assert that setting the user password works
  * 
  * @dataProvider TestCredentialsData
  */
 public function testPassword($password)
 {
     $this->assertSame($this->auth, $this->auth->setPassword($password));
     $this->assertSame($password, $this->auth->getPassword());
 }