public void matches_by_object_property_type_negative() { var binder = new PassthroughConverter<HttpPostedFileBase>(); binder.Matches(property(x => x.File3)).ShouldBeFalse(); }
public void matches_by_property_type_positive() { var binder = new PassthroughConverter<HttpPostedFileBase>(); binder.Matches(property(x => x.File)).ShouldBeTrue(); }
public void matches_by_property_type_negative() { var binder = new PassthroughConverter <HttpPostedFileBase>(); binder.Matches(property(x => x.File2)).ShouldBeFalse(); }