From ff559845d8fb5125869d316503db8fbd2447d85d Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 14 Oct 2015 16:07:07 -0400 Subject: [PATCH] Add a couple of fixtures. --- prototype/DoubtTests/AlgorithmTests.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prototype/DoubtTests/AlgorithmTests.swift b/prototype/DoubtTests/AlgorithmTests.swift index adc1c9cea..7858e415e 100644 --- a/prototype/DoubtTests/AlgorithmTests.swift +++ b/prototype/DoubtTests/AlgorithmTests.swift @@ -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