mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
8 lines
292 B
Swift
8 lines
292 B
Swift
import Foundation
|
|
|
|
func fixture(_ name: String, withExtension: String?) -> String {
|
|
let testBundle = Bundle(for: SQLiteTestCase.self)
|
|
return testBundle.url(
|
|
forResource: URL(string: "fixtures")?.appendingPathComponent(name).path,
|
|
withExtension: withExtension)!.path
|
|
}
|