public void CanReadSingleDateWithDDMMYYYYformat()
 {
     var attr = new DateFieldAttribute(2, 11, "ddMMyyyy");
     attr.ReadFrom("\010012011  ", typeof(DateTime))
         .Should().Be(new DateTime(2011, 01, 10));
 }