Exemplo n.º 1
0
 public void Should_ThrowRequiredFieldException_WhenDescriptionIsNullOrWhiteSpace()
 {
     Assert.Throws <RequiredFieldException>(() => builder.Description("").Build());
     Assert.Throws <RequiredFieldException>(() => builder.Description(null).Build());
 }