mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +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
|
||
|
|
}
|