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

Side by Side Diff: webrtc/api/objctests/RTCDataChannelConfigurationTest.mm

Issue 1616363005: Update API for Objective-C RTCDataChannelConfiguration. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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/api/objc/RTCDataChannelConfiguration+Private.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #import <Foundation/Foundation.h>
12
13 #include "webrtc/base/gunit.h"
14
15 #import "webrtc/api/objc/RTCDataChannelConfiguration.h"
16 #import "webrtc/api/objc/RTCDataChannelConfiguration+Private.h"
17 #import "webrtc/base/objc/NSString+StdString.h"
18
19 @interface RTCDataChannelConfigurationTest : NSObject
20 - (void)testConversionToNativeDataChannelInit;
21 @end
22
23 @implementation RTCDataChannelConfigurationTest
24
25 - (void)testConversionToNativeDataChannelInit {
26 RTCDataChannelConfiguration *dataChannelConfig =
27 [[RTCDataChannelConfiguration alloc] init];
28 dataChannelConfig.isOrdered = NO;
29 dataChannelConfig.maxPacketLifeTime = 5;
tkchin_webrtc 2016/01/26 20:12:43 consider using one variable for both setting the c
hjon_webrtc 2016/01/27 18:38:36 Done.
30 dataChannelConfig.maxRetransmits = 4;
31 dataChannelConfig.isNegotiated = YES;
32 dataChannelConfig.streamId = 4;
33 dataChannelConfig.protocol = @"protocol";
34
35 webrtc::DataChannelInit nativeInit = dataChannelConfig.nativeDataChannelInit;
36 EXPECT_EQ(false, nativeInit.ordered);
37 EXPECT_EQ(5, nativeInit.maxRetransmitTime);
38 EXPECT_EQ(4, nativeInit.maxRetransmits);
39 EXPECT_EQ(true, nativeInit.negotiated);
40 EXPECT_EQ(4, nativeInit.id);
41 EXPECT_EQ("protocol", nativeInit.protocol);
42 }
43
44 @end
45
46 TEST(RTCDataChannelConfiguration, NativeDataChannelInitConversionTest) {
47 @autoreleasepool {
48 RTCDataChannelConfigurationTest *test =
49 [[RTCDataChannelConfigurationTest alloc] init];
50 [test testConversionToNativeDataChannelInit];
51 }
52 }
OLDNEW
« no previous file with comments | « webrtc/api/objc/RTCDataChannelConfiguration+Private.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698