示例#1
0
 public void CanReadShouldReturnTrueIfTheNumberOfSyllablesIsPresent()
 {
     var line = new Line(5);
     Assert.True(line.CanRead("out of the water"));
 }
示例#2
0
 public void CanReadShouldReturnTrueIfTheNumberOfSyllablesCannotBeRepresented()
 {
     var line = new Line(5);
     Assert.False(line.CanRead("out of itself"));
 }