Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: webrtc/sdk/objc/Framework/UnitTests/avformatmappertests.mm

Issue 2890733003: Reland of Split iOS sdk in to separate targets (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/sdk/objc/Framework/Headers/WebRTC/RTCMacros.h ('k') | webrtc/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « webrtc/sdk/objc/Framework/Headers/WebRTC/RTCMacros.h ('k') | webrtc/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698