public void TestCompareTo() { Trader t1 = new Trader("Trader0"); Trader t2 = new Trader("Trader1"); Assert.IsTrue(t1.CompareTo(t2) < 0); }