Esempio n. 1
0
        public void CompareMinorFloatingVersion_NotEqual()
        {
            HarpVersion a = new HarpVersion(2, null);
            HarpVersion b = new HarpVersion(2, 1);

            AssertLessThan(a, b);
            AssertGreaterThan(b, a);
            Assert.IsTrue(a.Satisfies(b));
            Assert.IsTrue(b.Satisfies(a));
        }