OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CBPERIPHERAL_MAC_H_ | |
6 #define DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CBPERIPHERAL_MAC_H_ | |
7 | |
8 #include "base/mac/sdk_forward_declarations.h" | |
9 #include "build/build_config.h" | |
10 | |
11 #import <CoreBluetooth/CoreBluetooth.h> | |
12 | |
13 // Class to mock a CBPeripheral. It is less convenient to use OCMock since | |
14 // value of this class can change. | |
msarda
2016/02/11 10:55:39
I do not understand this comment. What is the "val
jlebel
2016/02/19 11:02:36
This is a mock. To mock CBPeripheral class, for un
msarda
2016/02/22 14:01:06
I think with OCMock, you could do something like:
| |
15 @interface MockCBPeripheral : NSObject | |
msarda
2016/02/11 10:55:39
Be very careful about using objects as mocks. As i
jlebel
2016/02/19 11:02:36
Acknowledged.
msarda
2016/02/22 14:01:06
Why does this object subclass NSObject and not CBP
| |
16 | |
17 @property(readonly) CBPeripheralState state; | |
msarda
2016/02/11 10:55:39
Why are the other properties non-atomic and this o
jlebel
2016/02/19 11:02:36
Done.
| |
18 @property(nonatomic, readonly) NSUUID* identifier; | |
19 @property(nonatomic, readonly) NSString* name; | |
20 | |
21 - (instancetype)initWithIdentifier:(NSUUID*)identifier; | |
22 - (void)setStateForTesting:(CBPeripheralState)state; | |
23 | |
24 @end | |
25 | |
26 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CBPERIPHERAL_MAC_H_ | |
OLD | NEW |