/**
  * @test
  * @return void
  */
 public function passwordReturnsStringSetBySetPassword()
 {
     $expected = 'teststring';
     $this->fixture->setPassword($expected);
     $this->assertSame($expected, $this->fixture->getPassword());
 }