1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 00:12:29 +03:00

Add a couple of fixtures.

This commit is contained in:
Rob Rix 2015-10-14 16:07:07 -04:00
parent 9a6e8dea03
commit ff559845d8

View File

@ -3,6 +3,10 @@ final class AlgorithmTests: XCTestCase {
}
private let a = Cofree(0, [ Cofree(1, .Leaf("a")), Cofree(2, .Leaf("b")), Cofree(3, .Leaf("c")) ])
private let b = Cofree(0, [ Cofree(1, .Leaf("c")), Cofree(2, .Leaf("b")), Cofree(3, .Leaf("a")) ])
import Assertions
@testable import Doubt
import XCTest