mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
21 lines
511 B
Swift
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)
|
|
}
|
|
}
|
|
}
|