-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBuildingTests.swift
59 lines (50 loc) · 1.29 KB
/
BuildingTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//
// BuildingTests.swift
// CodableTests
//
// Created by Nate Walczak on 4/7/20.
// Copyright © 2020 Detroit Labs. All rights reserved.
//
import XCTest
@testable import Codable
class BuildingTests: XCTestCase {
func testDecodable() {
// Given
let json = Data("""
{
"name": "Office Space",
"address": "123 Main St"
}
""".utf8)
// When
let building: Building
do {
building = try JSONDecoder().decode(Building.self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertEqual(building.name, "Office Space")
XCTAssertEqual(building.address, "123 Main St")
}
func testOptionalDecodable() {
// Given
let json = Data("""
{
"name": "Office Space"
}
""".utf8)
// When
let building: Building
do {
building = try JSONDecoder().decode(Building.self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertEqual(building.name, "Office Space")
XCTAssertNil(building.address)
}
}