public void RangeCompareToAbove() { var range = new Range<int>(3, 10); int value = 12; int comp = range.CompareTo(value); Assert.AreEqual(1, comp); }