}
@Test
public void testEquals() {
Assert.assertEquals(this.windowsAccount, new WindowsAccount(this.mockWindowsAccount));
final MockWindowsAccount mockWindowsAccount2 = new MockWindowsAccount("localhost\\Administrator2");
Assert.assertFalse(this.windowsAccount.equals(new WindowsAccount(mockWindowsAccount2)));
}