-
Notifications
You must be signed in to change notification settings - Fork 5
/
ArrayTests.swift
71 lines (59 loc) · 1.52 KB
/
ArrayTests.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
60
61
62
63
64
65
66
67
68
69
70
71
//
// ArrayTests.swift
// CodableTests
//
// Created by Nate Walczak on 9/27/18.
// Copyright © 2018 Detroit Labs. All rights reserved.
//
import XCTest
@testable import Codable
class ArrayTests: XCTestCase {
func testStrings() {
// Given
let json = Data("""
["Red", "Green", "Blue"]
""".utf8)
// When
let strings: [String]
do {
strings = try JSONDecoder().decode([String].self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertEqual(strings, ["Red", "Green", "Blue"])
}
func testIntegers() {
// Given
let json = Data("""
[1, 3, 5, 7, 9]
""".utf8)
// When
let integers: [Int]
do {
integers = try JSONDecoder().decode([Int].self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertEqual(integers, [1, 3, 5, 7, 9])
}
func testBooleans() {
// Given
let json = Data("""
[true, true, false]
""".utf8)
// When
let booleans: [Bool]
do {
booleans = try JSONDecoder().decode([Bool].self, from: json)
} catch {
XCTFail(error.localizedDescription)
return
}
// Then
XCTAssertEqual(booleans, [true, true, false])
}
}