session-ios/SignalServiceKit/tests/Contacts/TSGroupThreadTest.m
2018-09-10 17:30:18 -05:00

25 lines
400 B
Objective-C

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import "TSGroupThread.h"
#import "SSKBaseTest.h"
NS_ASSUME_NONNULL_BEGIN
@interface TSGroupThreadTest : SSKBaseTest
@end
@implementation TSGroupThreadTest
- (void)testHasSafetyNumbers
{
TSGroupThread *groupThread = [TSGroupThread new];
XCTAssertFalse(groupThread.hasSafetyNumbers);
}
@end
NS_ASSUME_NONNULL_END