Fixed broken display of custom icons

This commit is contained in:
michael starke
2016-03-08 19:15:28 +01:00
parent d408c925bf
commit 223a368cce
5 changed files with 11 additions and 9 deletions

View File

@@ -39,8 +39,12 @@
- (void)testMethodForwarding {
NSString *newPassword = @"new password";
NSString *newKeystrokes = @"{ENTER 3}";
[((id)self.proxy) setPassword:newPassword];
XCTAssertEqualObjects(self.entry.password, newPassword, @"Proxy has forwared password setting to KPKEntry!");
XCTAssertEqualObjects(self.entry.password, newPassword, @"Proxy sets password on entry!");
[((id)self.proxy) autotype].defaultKeystrokeSequence= newKeystrokes;
XCTAssertEqualObjects(self.entry.autotype.defaultKeystrokeSequence, newKeystrokes, @"Proxy sets default keystroke sequence on entry autotype!");
}
@end