mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-13 12:19:25 +00:00
17 lines
435 B
Swift
17 lines
435 B
Swift
//
|
|
// Queries.swift
|
|
// KeymanEngineTests
|
|
//
|
|
// Created by Joshua Horton on 6/26/20.
|
|
// Copyright © 2020 SIL International. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension TestUtils {
|
|
enum Queries {
|
|
static let query_bundle = TestUtils.findSubBundle(forResource: "Queries", ofType: ".bundle")
|
|
|
|
static let package_version_case_1 = query_bundle.url(forResource: "package-version-case-1", withExtension: "json")!
|
|
}
|
|
}
|