aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2016-07-14 16:22:03 -0700
committerGravatar Muxi Yan <mxyan@google.com>2016-07-14 16:28:00 -0700
commit37480eb60a3beebddb6a582c5f95de660abe4d8b (patch)
treee0acd72b513d52aa52ef2142c812b6d1f8bf276d /src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
parent142efc905f835f39010cf3efe6ec5cfe04a251ff (diff)
Establish Objective C end-to-end core test with Cronet
Diffstat (limited to 'src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m')
-rw-r--r--src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m b/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
new file mode 100644
index 0000000000..0f07b6682e
--- /dev/null
+++ b/src/objective-c/tests/CoreCronetEnd2EndTests/CoreCronetEnd2EndTests.m
@@ -0,0 +1,39 @@
+//
+// CoreCronetEnd2EndTests.m
+// CoreCronetEnd2EndTests
+//
+// Created by Muxi Yan on 7/14/16.
+// Copyright © 2016 gRPC. All rights reserved.
+//
+
+#import <XCTest/XCTest.h>
+
+@interface CoreCronetEnd2EndTests : XCTestCase
+
+@end
+
+@implementation CoreCronetEnd2EndTests
+
+- (void)setUp {
+ [super setUp];
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+}
+
+- (void)tearDown {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ [super tearDown];
+}
+
+- (void)testExample {
+ // This is an example of a functional test case.
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
+}
+
+- (void)testPerformanceExample {
+ // This is an example of a performance test case.
+ [self measureBlock:^{
+ // Put the code you want to measure the time of here.
+ }];
+}
+
+@end