#ifndef DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_CBSERVICE_MAC_H_
#define DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_CBSERVICE_MAC_H_
#include "build/build_config.h"
#import <CoreBluetooth/CoreBluetooth.h>
@class MockCBCharacteristic;
@interface MockCBService : NSObject
@property(readonly, nonatomic) CBUUID* UUID;
@property(readonly, nonatomic) BOOL isPrimary;
@property(readonly, nonatomic) CBService* service;
- (instancetype)initWithPeripheral:(CBPeripheral*)peripheral
CBUUID:(CBUUID*)uuid
primary:(BOOL)isPrimary;
- (void)addCharacteristicWithUUID:(CBUUID*)uuid properties:(int)properties;
- (void)removeCharacteristicMock:(MockCBCharacteristic*)characteristicMock;
@end
#endif