Esempio n. 1
0
 public void Line_one()
 {
     Assert.That(Proverb.Line(1), Is.EqualTo("For want of a nail the shoe was lost."));
 }
Esempio n. 2
0
 public void Line_seven()
 {
     Assert.That(Proverb.Line(7), Is.EqualTo("And all for the want of a horseshoe nail."));
 }
Esempio n. 3
0
 public void Line_four()
 {
     Assert.That(Proverb.Line(4), Is.EqualTo("For want of a rider the message was lost."));
 }
Esempio n. 4
0
 public void Line_one()
 {
     Assert.Equal("For want of a nail the shoe was lost.", Proverb.Line(1));
 }
Esempio n. 5
0
 public void Line_seven()
 {
     Assert.Equal("And all for the want of a horseshoe nail.", Proverb.Line(7));
 }
Esempio n. 6
0
 public void Line_four()
 {
     Assert.Equal("For want of a rider the message was lost.", Proverb.Line(4));
 }