/**
  * testReset method
  *
  * @return void
  */
 public function testReset()
 {
     $Creds = new Credentials(['username' => 'admin', 'password' => 'abc123']);
     $Creds->reset();
     $this->assertSame($Creds->get(), array('username' => '', 'password' => ''));
 }