OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #import <Foundation/Foundation.h> | 11 #import <Foundation/Foundation.h> |
12 #import <OCMock/OCMock.h> | 12 #import <OCMock/OCMock.h> |
13 | 13 |
14 #include "webrtc/base/gunit.h" | 14 #include "webrtc/base/gunit.h" |
15 | 15 |
16 #include "avfoundationformatmapper.h" | 16 #include "Video/avfoundationformatmapper.h" |
17 | 17 |
18 | 18 |
19 // Width and height don't play any role so lets use predefined values throughout | 19 // Width and height don't play any role so lets use predefined values throughout |
20 // the tests. | 20 // the tests. |
21 static const int kFormatWidth = 789; | 21 static const int kFormatWidth = 789; |
22 static const int kFormatHeight = 987; | 22 static const int kFormatHeight = 987; |
23 | 23 |
24 // Hardcoded framrate to be used throughout the tests. | 24 // Hardcoded framrate to be used throughout the tests. |
25 static const int kFramerate = 30; | 25 static const int kFramerate = 30; |
26 | 26 |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 //https://github.com/erikdoe/ocmock/issues/241 | 237 //https://github.com/erikdoe/ocmock/issues/241 |
238 @try { | 238 @try { |
239 [mockDevice verify]; | 239 [mockDevice verify]; |
240 } @catch (NSException* exception) { | 240 } @catch (NSException* exception) { |
241 if ([exception.reason isEqual:testException.reason]) { | 241 if ([exception.reason isEqual:testException.reason]) { |
242 // Nothing dangerous here | 242 // Nothing dangerous here |
243 EXPECT_TRUE([exception.reason isEqualToString:exception.reason]); | 243 EXPECT_TRUE([exception.reason isEqualToString:exception.reason]); |
244 } | 244 } |
245 } | 245 } |
246 } | 246 } |
OLD | NEW |