예제 #1
0
        public void LargerThanOperatorWithFirstObjectNull()
        {
            PartRegistrationId first  = null;
            PartRegistrationId second = new PartRegistrationId(typeof(string).FullName, 0);

            Assert.IsFalse(first > second);
        }
예제 #2
0
        public void CompareToWithSmallerFirstObject()
        {
            var first  = new PartRegistrationId(typeof(string).FullName, 0);
            var second = new PartRegistrationId(typeof(string).FullName, 1);

            Assert.IsTrue(first.CompareTo(second) < 0);
        }
예제 #3
0
        public void CompareToWithUnequalObjectTypes()
        {
            PartRegistrationId first  = new PartRegistrationId(typeof(string).FullName, 0);
            object             second = new object();

            Assert.Throws <ArgumentException>(() => first.CompareTo(second));
        }
예제 #4
0
        public void CompareToWithNullObject()
        {
            PartRegistrationId first  = new PartRegistrationId(typeof(string).FullName, 0);
            object             second = null;

            Assert.AreEqual(1, first.CompareTo(second));
        }
예제 #5
0
        public void CompareToOperatorWithEqualObjects()
        {
            var    first  = new PartRegistrationId(typeof(string).FullName, 0);
            object second = first.Clone();

            Assert.AreEqual(0, first.CompareTo(second));
        }
예제 #6
0
        public void Clone()
        {
            PartRegistrationId first  = new PartRegistrationId(typeof(string).FullName, 0);
            PartRegistrationId second = first.Clone();

            Assert.AreEqual(first, second);
        }
예제 #7
0
        public void SmallerThanOperatorWithFirstObjectSmaller()
        {
            var first  = new PartRegistrationId(typeof(string).FullName, 0);
            var second = new PartRegistrationId(typeof(string).FullName, 1);

            Assert.IsTrue(first < second);
        }
예제 #8
0
        public void SmallerThanOperatorWithEqualObjects()
        {
            var first  = new PartRegistrationId(typeof(string).FullName, 0);
            var second = first.Clone();

            Assert.IsFalse(first < second);
        }
예제 #9
0
        public void SmallerThanOperatorWithBothObjectsNull()
        {
            PartRegistrationId first  = null;
            PartRegistrationId second = null;

            Assert.IsFalse(first < second);
        }
예제 #10
0
        public void SmallerThanOperatorWithSecondObjectNull()
        {
            PartRegistrationId first  = new PartRegistrationId(typeof(string).FullName, 0);
            PartRegistrationId second = null;

            Assert.IsFalse(first < second);
        }