mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
12 lines
252 B
Swift
12 lines
252 B
Swift
import Foundation
|
|
import Testing
|
|
|
|
@testable import HaishinKit
|
|
|
|
@Suite struct SwiftCoreExtensionTests {
|
|
@Test func int32() {
|
|
#expect(Int32.min == Int32(data: Int32.min.data))
|
|
#expect(Int32.max == Int32(data: Int32.max.data))
|
|
}
|
|
}
|