Signal-iOS/SignalServiceKit/tests/Contacts/TSGroupThreadTest.m
2021-10-21 09:21:33 -03:00

25 lines
445 B
Objective-C

//
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
//
#import "SSKBaseTestObjC.h"
#import "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