public void ProteinBenchmarkSlotIdentifier_Comparison_Test11() { var client1 = new ProteinBenchmarkSlotIdentifier("name", "path\\to\\folder\\"); var client2 = new ProteinBenchmarkSlotIdentifier("name", "path/to/folder/"); Assert.IsFalse(client1.Equals(client2)); Assert.IsTrue(client1.CompareTo(client2) > 0); }
public void ProteinBenchmarkSlotIdentifier_Comparison_Test13() { var client1 = new ProteinBenchmarkSlotIdentifier("name", "path\\"); var client2 = new ProteinBenchmarkSlotIdentifier("name2", "path\\"); Assert.IsFalse(client1.Equals(client2)); Assert.IsTrue(client1.CompareTo(client2) < 0); }
public void ProteinBenchmarkSlotIdentifier_Comparison_Test3() { var client1 = new ProteinBenchmarkSlotIdentifier(); var client2 = new ProteinBenchmarkSlotIdentifier(); Assert.IsTrue(client1.Equals(client2)); Assert.IsTrue(client1.CompareTo(client2) == 0); }