public void can_read_string_with_trim()
 {
     var type = new StringType("3");
     type.Read(new StringWalker("qw a")).Should().Be("qw");
 }
 public void can_read_string_passing_the_end_with_trim()
 {
     var type = new StringType("3");
     type.Read(new StringWalker("q ")).Should().Be("q");
 }