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