Skip to content
Snippets Groups Projects
Commit e9ca0dc8 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Refactor

parent b710bec8
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!18Update Bindings
...@@ -4,26 +4,25 @@ import XCTest ...@@ -4,26 +4,25 @@ import XCTest
final class FactTests: XCTestCase { final class FactTests: XCTestCase {
func testCoding() throws { func testCoding() throws {
let factString = "Zezima"
let factType: Int = 0
let jsonString = """ let jsonString = """
{ {
"Fact": "Zezima", "Fact": "\(factString)",
"Type": 0 "Type": \(factType)
} }
""" """
let jsonData = jsonString.data(using: .utf8)! let jsonData = jsonString.data(using: .utf8)!
let decoder = JSONDecoder()
decoder.dataDecodingStrategy = .base64 let fact = try Fact.decode(jsonData)
let fact = try decoder.decode(Fact.self, from: jsonData)
XCTAssertNoDifference(fact, Fact( XCTAssertNoDifference(fact, Fact(
fact: "Zezima", fact: factString,
type: 0 type: factType
)) ))
let encoder = JSONEncoder() let encodedFact = try fact.encode()
encoder.dataEncodingStrategy = .base64 let decodedFact = try Fact.decode(encodedFact)
let encodedFact = try encoder.encode(fact)
let decodedFact = try decoder.decode(Fact.self, from: encodedFact)
XCTAssertNoDifference(decodedFact, fact) XCTAssertNoDifference(decodedFact, fact)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment