Skip to content

Commit 3817353

Browse files
committed
Implemented initializer, getters, and tests for NSHTTPCookie
1 parent 7d77b31 commit 3817353

File tree

4 files changed

+281
-29
lines changed

4 files changed

+281
-29
lines changed

Foundation.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@
189189
5BF7AEBF1BCD51F9008F214A /* NSURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BDC3F4A1BCC5DCB00ED97BB /* NSURL.swift */; };
190190
5BF7AEC01BCD51F9008F214A /* NSUUID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BDC3F4B1BCC5DCB00ED97BB /* NSUUID.swift */; };
191191
5BF7AEC11BCD51F9008F214A /* NSValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BDC3F4C1BCC5DCB00ED97BB /* NSValue.swift */; };
192+
848A30581C137B3500C83206 /* TestNSHTTPCookie.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848A30571C137B3500C83206 /* TestNSHTTPCookie.swift */; };
192193
EA66F6361BEED03E00136161 /* TargetConditionals.h in Headers */ = {isa = PBXBuildFile; fileRef = EA66F6351BEED03E00136161 /* TargetConditionals.h */; settings = {ATTRIBUTES = (Public, ); }; };
193194
EA66F6441BF1619600136161 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA66F6381BF1619600136161 /* main.swift */; };
194195
EA66F6481BF1619600136161 /* NSURLTestData.plist in Resources */ = {isa = PBXBuildFile; fileRef = EA66F63B1BF1619600136161 /* NSURLTestData.plist */; };
@@ -503,6 +504,7 @@
503504
5BDC3FCF1BCF17E600ED97BB /* NSCFSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSCFSet.swift; sourceTree = "<group>"; };
504505
5BDC405C1BD6D83B00ED97BB /* TestFoundation.app */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestFoundation.app; sourceTree = BUILT_PRODUCTS_DIR; };
505506
5BF7AEC21BCD568D008F214A /* ForSwiftFoundationOnly.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ForSwiftFoundationOnly.h; sourceTree = "<group>"; };
507+
848A30571C137B3500C83206 /* TestNSHTTPCookie.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = TestNSHTTPCookie.swift; path = TestFoundation/TestNSHTTPCookie.swift; sourceTree = SOURCE_ROOT; };
506508
EA313DFC1BE7F2E90060A403 /* CFURLComponents_Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CFURLComponents_Internal.h; sourceTree = "<group>"; };
507509
EA313DFD1BE7F2E90060A403 /* CFURLComponents_URIParser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CFURLComponents_URIParser.c; sourceTree = "<group>"; };
508510
EA313DFE1BE7F2E90060A403 /* CFURLComponents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CFURLComponents.c; sourceTree = "<group>"; };
@@ -988,6 +990,7 @@
988990
children = (
989991
EA66F63C1BF1619600136161 /* TestNSArray.swift */,
990992
EA66F63D1BF1619600136161 /* TestNSDictionary.swift */,
993+
848A30571C137B3500C83206 /* TestNSHTTPCookie.swift */,
991994
EA66F63E1BF1619600136161 /* TestNSIndexSet.swift */,
992995
EA66F63F1BF1619600136161 /* TestNSNumber.swift */,
993996
EA66F6401BF1619600136161 /* TestNSPropertyList.swift */,
@@ -1680,6 +1683,7 @@
16801683
EA66F6501BF1619600136161 /* TestNSNumber.swift in Sources */,
16811684
EA66F6521BF1619600136161 /* TestNSPropertyList.swift in Sources */,
16821685
EA66F64E1BF1619600136161 /* TestNSIndexSet.swift in Sources */,
1686+
848A30581C137B3500C83206 /* TestNSHTTPCookie.swift in Sources */,
16831687
EA66F6541BF1619600136161 /* TestNSSet.swift in Sources */,
16841688
EA66F64A1BF1619600136161 /* TestNSArray.swift in Sources */,
16851689
5BC1D8BE1BF3B09E009D3973 /* TestNSCharacterSet.swift in Sources */,

0 commit comments

Comments
 (0)