mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
14 lines
330 B
Swift
14 lines
330 B
Swift
import AVFoundation
|
|
import Foundation
|
|
import Testing
|
|
|
|
@testable import RTCHaishinKit
|
|
|
|
@Suite struct RTPFormatParamterTests {
|
|
@Test func opus() throws {
|
|
let parameter = RTPFormatParameter("minptime=10;useinbandfec=1;stereo=1")
|
|
#expect(parameter.stereo == true)
|
|
#expect(parameter.minptime == 10)
|
|
}
|
|
}
|