yattee/Tests macOS/Extensions/Int+FormatTests.swift
2021-11-12 10:53:15 +01:00

21 lines
511 B
Swift

import XCTest
final class IntFormatTests: XCTestCase {
func testFormattedAsAbbreviation() throws {
let samples: [Int: String] = [
1: "1",
999: "999",
1000: "1K",
1101: "1,1K",
12345: "12,3K",
123_456: "123,5K",
123_626_789: "123,6M",
1_331_211_123: "1,3B"
]
samples.forEach { value, formatted in
XCTAssertEqual(value.formattedAsAbbreviation(), formatted)
}
}
}