Пример #1
0
 public void Return_multiple_verses()
 {
     TwelveDaysSong.Verses(1, 3).Should()
     .Be("On the first day of Christmas my true love gave to me, a Partridge in a Pear Tree.\n\n" +
         "On the second day of Christmas my true love gave to me, two Turtle Doves, and a Partridge in a Pear Tree.\n\n" +
         "On the third day of Christmas my true love gave to me, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n\n");
 }
Пример #2
0
 public void Return_entire_song()
 {
     TwelveDaysSong.Sing().Should()
     .Be(TwelveDaysSong.Verses(1, 12));
 }