public void When_ComparingToInequalPathRef(string inputA, string inputB) { PathRef pathRefA = new PathRef(inputA); PathRef pathRefB = new PathRef(inputB); Assert.That(pathRefA.Equals(pathRefB), Is.False); }
public void When_ComparingToEmptyPathRef(string inputA) { PathRef pathRefA = new PathRef(inputA); PathRef emptyPathRef = new PathRef(); Assert.That(pathRefA.Equals(emptyPathRef), Is.False); }
public void When_ComparingEmptyPathRefs() { PathRef pathRefA = new PathRef(); PathRef pathRefB = new PathRef(); Assert.That(pathRefA.Equals(pathRefB), Is.True); }