Signal-iOS/SignalServiceKit/tests/SSKBaseTestObjC.h
Matthew Chen 86b8eb08b8 Remove YapDatabase.
Apply asset from design.

Fix rebase breakage.
2021-03-25 11:41:16 -03:00

25 lines
479 B
Objective-C

//
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
//
#import <SignalServiceKit/MockSSKEnvironment.h>
#import <XCTest/XCTest.h>
NS_ASSUME_NONNULL_BEGIN
@class SDSAnyReadTransaction;
@class SDSAnyWriteTransaction;
#ifdef DEBUG
@interface SSKBaseTestObjC : XCTestCase
- (void)readWithBlock:(void (^)(SDSAnyReadTransaction *transaction))block;
- (void)writeWithBlock:(void (^)(SDSAnyWriteTransaction *transaction))block;
@end
#endif
NS_ASSUME_NONNULL_END