-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModelTests.swift
52 lines (44 loc) · 1.17 KB
/
ModelTests.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
//
// ModelTests.swift
//
//
// Created by Kutsal Kaan Bilgin on 31.07.2022.
//
import Foundation
@testable import SubVTData
import XCTest
final class Model: XCTestCase {
override func setUp() {
initLog()
}
func testBalanceAdd() {
XCTAssertEqual(
Balance(integerLiteral: 123) + Balance(integerLiteral: 345),
Balance(integerLiteral: 468)
)
}
func testBalanceSubtract() {
XCTAssertEqual(
Balance(integerLiteral: 123) - Balance(integerLiteral: 100),
Balance(integerLiteral: 23)
)
}
func testBalanceMultiply() {
XCTAssertEqual(
Balance(integerLiteral: 74854) * Balance(integerLiteral: 3245),
Balance(integerLiteral: 242901230)
)
}
func testBalanceDivide() {
XCTAssertEqual(
Balance(integerLiteral: 74854) / Balance(integerLiteral: 3245),
Balance(integerLiteral: 23)
)
}
func testBalanceMod() {
XCTAssertEqual(
Balance(integerLiteral: 74854) % Balance(integerLiteral: 3245),
Balance(integerLiteral: 219)
)
}
}