Ejemplo n.º 1
0
 public void ToStringTwoPort()
 {
     var pc = new PortCouple(1212,1215);
     Assert.AreEqual("1212-1215", pc.ToString());
 }
Ejemplo n.º 2
0
 public void ToStringOnePort()
 {
     var pc = new PortCouple(1212);
     Assert.AreEqual("1212", pc.ToString());
 }