spiegel-keyman/ios/engine/KMEI/KeymanEngineTests/TestUtils/LexicalModels.swift

21 lines
712 B
Swift

//
// LexicalModels.swift
// KeymanEngineTests
//
// Created by Joshua Horton on 2/19/20.
// Copyright © 2020 SIL International. All rights reserved.
//
import Foundation
@testable import KeymanEngine
extension TestUtils {
enum LexicalModels {
static let mtntKMP = TestUtils.lexicalModelsBundle.url(forResource: "nrc.en.mtnt.model", withExtension: "kmp")!
static let mtnt = InstallableLexicalModel(id: "nrc.en.mtnt",
name: "English dictionary (MTNT)",
languageID: "en",
version: "0.1.4",
isCustom: false)
}
}