Signal-iOS/SignalServiceKit/tests/Contacts/TSGroupThreadTest.m
2021-06-07 11:41:43 -04:00

25 lines
462 B
Objective-C

//
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
//
#import "SSKBaseTestObjC.h"
#import <SignalServiceKit/TSGroupThread.h>
NS_ASSUME_NONNULL_BEGIN
@interface TSGroupThreadTest : SSKBaseTestObjC
@end
@implementation TSGroupThreadTest
- (void)testHasSafetyNumbers
{
TSGroupThread *groupThread = [[TSGroupThread alloc] initWithDictionary:@{} error:nil];
XCTAssertFalse(groupThread.hasSafetyNumbers);
}
@end
NS_ASSUME_NONNULL_END