Fixed layout constraints bug in InspectorView

Updated more xibs to Xcode 5 format
More stubbing regarding autotype
This commit is contained in:
michael starke
2013-11-04 00:26:19 +01:00
parent 2c8dba441a
commit 52b734239f
17 changed files with 857 additions and 6345 deletions

View File

@@ -9,6 +9,7 @@
#import "MPDatabaseCreation.h"
#import "MPDocument.h"
#import "KPKTree.h"
#import "KPKCompositeKey.h"
@implementation MPDatabaseCreation
@@ -17,7 +18,7 @@
STAssertNotNil(document, @"Document should be created");
STAssertTrue(document.tree.minimumVersion == KPKLegacyVersion, @"Tree should be Legacy Version in defautl case");
STAssertFalse(document.encrypted, @"Document cannot be encrypted at creation");
STAssertFalse(document.hasPasswordOrKey, @"Document has no Password/Keyfile and thus is not secured");
STAssertFalse(document.compositeKey.hasPasswordOrKeyFile, @"Document has no Password/Keyfile and thus is not secured");
}
@end