mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
12 lines
226 B
Swift
12 lines
226 B
Swift
import Foundation
|
|
import Testing
|
|
|
|
@testable import HaishinKit
|
|
|
|
@Suite struct ADTSHeaderTests {
|
|
@Test func bytes() {
|
|
let data = Data([255, 241, 77, 128, 112, 127, 252, 1])
|
|
_ = ADTSHeader(data: data)
|
|
}
|
|
}
|