1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 05:11:44 +03:00
semantic/prototype/DoubtTests/DiffTests.swift
2015-10-16 17:13:59 -04:00

17 lines
337 B
Swift

final class DiffTests: XCTestCase {
override static func setUp() {
sranddev()
}
typealias Term = RangedTerm.Term
typealias Diff = Free<String, Patch<Term>>
let interpreter = Interpreter<Term>(equal: ==, comparable: const(true), cost: Diff.sum(const(1)))
}
@testable import Doubt
import Prelude
import SwiftCheck
import XCTest