is there is a way to negate the \"if let\" in swift? This looks silly to me:
if let type = json.type { } else { XCTFail(\"There is no type
Here's how you do it:
if json.type == nil { // fail }