public void LargerThanOperatorWithFirstObjectNull() { CommunicationSubject first = null; var second = new CommunicationSubject("a"); Assert.IsFalse(first > second); }
public void CompareToWithSmallerFirstObject() { var first = new CommunicationSubject("a"); object second = new CommunicationSubject("b"); Assert.IsTrue(first.CompareTo(second) < 0); }
public void CompareToWithUnequalObjectTypes() { var first = new CommunicationSubject("a"); var second = new object(); Assert.Throws <ArgumentException>(() => first.CompareTo(second)); }
public void CompareToWithNullObject() { var first = new CommunicationSubject("a"); object second = null; Assert.AreEqual(1, first.CompareTo(second)); }
public void CompareToOperatorWithEqualObjects() { var first = new CommunicationSubject("a"); object second = new CommunicationSubject("a"); Assert.AreEqual(0, first.CompareTo(second)); }
public void SmallerThanOperatorWithFirstObjectSmaller() { var first = new CommunicationSubject("a"); var second = new CommunicationSubject("b"); Assert.IsTrue(first < second); }
public void Clone() { var first = new CommunicationSubject("a"); var second = first.Clone(); Assert.AreEqual(first, second); }
public void SmallerThanOperatorWithEqualObjects() { var first = new CommunicationSubject("a"); var second = new CommunicationSubject("a"); Assert.IsFalse(first < second); }
public void SmallerThanOperatorWithBothObjectsNull() { CommunicationSubject first = null; CommunicationSubject second = null; Assert.IsFalse(first < second); }
public void SmallerThanOperatorWithSecondObjectNull() { var first = new CommunicationSubject("a"); CommunicationSubject second = null; Assert.IsFalse(first < second); }
public void SmallerThanOperatorWithFirstObjectNull() { CommunicationSubject first = null; var second = new CommunicationSubject("a"); Assert.IsTrue(first < second); }
public void LargerThanOperatorWithSecondObjectNull() { var first = new CommunicationSubject("a"); CommunicationSubject second = null; Assert.IsTrue(first > second); }