Skip to content

Commit af9ed3c

Browse files
committed
removing unused tests
1 parent 499337c commit af9ed3c

File tree

4 files changed

+0
-71
lines changed

4 files changed

+0
-71
lines changed

HttpUtility.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
8656BC5E2484313F0023549D /* HttpUtilityIntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8656BC5D2484313F0023549D /* HttpUtilityIntegrationTests.swift */; };
1313
8656BC61248495700023549D /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8656BC60248495700023549D /* Response.swift */; };
1414
86719EA024720BD1002A2AB0 /* HttpUtility.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86719E9624720BD1002A2AB0 /* HttpUtility.framework */; };
15-
86719EA524720BD1002A2AB0 /* HttpUtilityTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86719EA424720BD1002A2AB0 /* HttpUtilityTests.swift */; };
1615
86719EA724720BD1002A2AB0 /* HttpUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 86719E9924720BD1002A2AB0 /* HttpUtility.h */; settings = {ATTRIBUTES = (Public, ); }; };
1716
86719EB124720E40002A2AB0 /* HttpUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86719EB024720E40002A2AB0 /* HttpUtility.swift */; };
1817
/* End PBXBuildFile section */
@@ -36,7 +35,6 @@
3635
86719E9924720BD1002A2AB0 /* HttpUtility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HttpUtility.h; sourceTree = "<group>"; };
3736
86719E9A24720BD1002A2AB0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3837
86719E9F24720BD1002A2AB0 /* HttpUtilityTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = HttpUtilityTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
39-
86719EA424720BD1002A2AB0 /* HttpUtilityTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HttpUtilityTests.swift; sourceTree = "<group>"; };
4038
86719EA624720BD1002A2AB0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4139
86719EB024720E40002A2AB0 /* HttpUtility.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HttpUtility.swift; sourceTree = "<group>"; };
4240
/* End PBXFileReference section */
@@ -127,7 +125,6 @@
127125
8656BC5F248495620023549D /* TestModel */,
128126
8656BC5C248431200023549D /* IntegrationTests */,
129127
8656BC592483E4200023549D /* ExtensionsTests */,
130-
86719EA424720BD1002A2AB0 /* HttpUtilityTests.swift */,
131128
86719EA624720BD1002A2AB0 /* Info.plist */,
132129
);
133130
path = HttpUtilityTests;
@@ -254,7 +251,6 @@
254251
files = (
255252
8656BC61248495700023549D /* Response.swift in Sources */,
256253
8656BC5B2483E43D0023549D /* EncodableExtensionUnitTest.swift in Sources */,
257-
86719EA524720BD1002A2AB0 /* HttpUtilityTests.swift in Sources */,
258254
8656BC5E2484313F0023549D /* HttpUtilityIntegrationTests.swift in Sources */,
259255
);
260256
runOnlyForDeploymentPostprocessing = 0;

HttpUtilityTests/ExtensionsTests/EncodableExtensionUnitTest.swift

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ import XCTest
1111

1212
class EncodableExtensionUnitTest: XCTestCase {
1313

14-
override func setUpWithError() throws {
15-
// Put setup code here. This method is called before the invocation of each test method in the class.
16-
}
17-
18-
override func tearDownWithError() throws {
19-
// Put teardown code here. This method is called after the invocation of each test method in the class.
20-
}
21-
2214
func test_convertToURLQueryItems_With_SimpleStructure_Returuns_URLQueryItemCollection()
2315
{
2416
// ARRANGE
@@ -91,13 +83,4 @@ class EncodableExtensionUnitTest: XCTestCase {
9183
XCTAssertNotNil(result)
9284
XCTAssertTrue(result?.count == 4)
9385
}
94-
95-
96-
// func testPerformanceExample() throws {
97-
// // This is an example of a performance test case.
98-
// self.measure {
99-
// // Put the code you want to measure the time of here.
100-
// }
101-
// }
102-
10386
}

HttpUtilityTests/HttpUtilityTests.swift

Lines changed: 0 additions & 34 deletions
This file was deleted.

HttpUtilityTests/IntegrationTests/HttpUtilityIntegrationTests.swift

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,6 @@ class HttpUtilityIntegrationTests: XCTestCase {
1414
private typealias Employees = [EmployeeResponse]
1515
private let _utility = HttpUtility()
1616

17-
override func setUpWithError() throws {
18-
// Put setup code here. This method is called before the invocation of each test method in the class.
19-
}
20-
21-
override func tearDownWithError() throws {
22-
// Put teardown code here. This method is called after the invocation of each test method in the class.
23-
}
24-
2517
func test_getApiData_With_Valid_Request_Returns_Success()
2618
{
2719
// ARRANGE
@@ -55,12 +47,4 @@ class HttpUtilityIntegrationTests: XCTestCase {
5547

5648
wait(for: [expectation], timeout: 10.0)
5749
}
58-
59-
func testPerformanceExample() throws {
60-
// This is an example of a performance test case.
61-
self.measure {
62-
// Put the code you want to measure the time of here.
63-
}
64-
}
65-
6650
}

0 commit comments

Comments
 (0)