mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 15:12:21 +00:00
Filtering should work reliably now. No "sticking" of entries Fixed #42. Deleted entries now result in desolation.
20 lines
331 B
Objective-C
20 lines
331 B
Objective-C
//
|
|
// KPKTreeLoadingTest.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 20.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <SenTestingKit/SenTestingKit.h>
|
|
|
|
@class KPKPassword;
|
|
|
|
@interface KPKLegacyLoadingTest : SenTestCase {
|
|
@private
|
|
NSData *_data;
|
|
KPKPassword *_password;
|
|
}
|
|
|
|
@end
|