Removed CocoaHTTP server, KeePassHTTP Plugin will bring it's own server

Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
This commit is contained in:
michael starke
2015-08-14 17:55:50 +02:00
parent f02788116c
commit f86eda3eeb
17 changed files with 3 additions and 745 deletions

View File

@@ -42,8 +42,8 @@
KPKTree *tree = [[KPKTree alloc] initWithData:_data password:_password error:&error];
XCTAssertNotNil(tree, @"Loading should result in a tree object");
XCTAssertTrue([tree.root.groups count] == 0, @"Tree contains just root group");
XCTAssertTrue([tree.root.entries count] == 1, @"Tree has only one entry");
XCTAssertEqual(tree.root.groups.count, 0, @"Tree contains just root group");
XCTAssertEqual(tree.root.entries.count, 1, @"Tree has only one entry");
}
- (void)testAutotypeLoading {
@@ -55,6 +55,7 @@
XCTAssertNotNil(tree, @"Tree shoud be loaded");
KPKEntry *entry = tree.root.entries[0];
XCTAssertNotNil(entry, @"Entry should be there");
XCTFail(@"Uncomplete Test!");
}
@end