public void ElseExampleHandlesElseCorrectly() { var result = UnionMatcherExamples.ElseExample(new Union <int, bool>(1)) + UnionMatcherExamples.ElseExample(new Union <int, bool>(true)); AreEqual("????", result); }
public void ElseExampleStillMatchesCorrectly() { var result = UnionMatcherExamples.ElseExample(new Union <int, bool>(0)) + UnionMatcherExamples.ElseExample(new Union <int, bool>(false)); AreEqual("0false", result); }