在 IOS 中创建用于编写单元测试的 cookie
Creating a cookie in IOS for writing unit tests
我需要编写一个单元测试来获取所有 cookie 并为 ios 设备清除它们。为此,我想创建自己的 cookie 数组并将其传递给执行清除 cookie 任务的方法。我使用 NSHTTPCookie :initwithProperties 方法创建了一个 cookie。但是当我打印 cookie 时,该值不知何故为 null -
这是它的代码:
NSLog 打印 Cookie (null)
,我不知道这是为什么。
如评论所述:
Try removing the @""
surrounding the NSHTTPCookiePath ...
I believe those are defined constants.
我需要编写一个单元测试来获取所有 cookie 并为 ios 设备清除它们。为此,我想创建自己的 cookie 数组并将其传递给执行清除 cookie 任务的方法。我使用 NSHTTPCookie :initwithProperties 方法创建了一个 cookie。但是当我打印 cookie 时,该值不知何故为 null -
这是它的代码:
NSLog 打印 Cookie (null)
,我不知道这是为什么。
如评论所述:
Try removing the
@""
surrounding theNSHTTPCookiePath ...
I believe those are defined constants.