aspnetcore/test/WebSites
Doug Bunting eee1a9fef4 Do not generate a validation summary when `excludePropertyErrors` unless specific model has an error
- #5209
- update affected `HtmlHelperValiationSummaryTest` and functional tests
- add `ValidationSummaryTagHelperTest` tests to cover related scenarios

##### Behaviour changes when no errors exist for the model:
###### Tag helper
``` html
<div asp-validation-summary="ModelOnly" class="order"><h3>Oopsie<h3></div>
```
previously generated
``` html
<div class="order validation-summary-errors"><h3>Oopsie</h3><ul><li style="display:none"></li>
</ul></div>
```
and now generates
``` html
<div class="order"><h3>Oopsie</h3></div>
```
###### HTML helper
``` c#
@Html.ValidationSummary(excludePropertyErrors: true, message: "Oopsie")
```
previously generated
``` html
<div class=\"validation-summary-errors\"><span>Oopsie</span>
<ul><li style=\"display:none\"></li>
</ul></div>
```
and now generates nothing (`@HtmlString.Empty`).
2016-09-08 15:36:47 -07:00
..
ApiExplorerWebSite
ApplicationModelWebSite
BasicWebSite
ControllersFromServicesClassLibrary
ControllersFromServicesWebSite
CorsWebSite
ErrorPageMiddlewareWebSite Added a test to verify ReflectionTypeLoadException 2016-07-25 12:06:16 -07:00
FilesWebSite ModelBinding: Remove IsReadOnly checks and add/update tests 2016-08-04 14:20:23 -07:00
FiltersWebSite Reverting accidental changes 2016-09-08 08:28:51 -07:00
FormatterWebSite One build to rule them all 2016-07-06 16:21:18 -07:00
HtmlGenerationWebSite
Microsoft.AspNetCore.Mvc.TestConfiguration
RazorPageExecutionInstrumentationWebSite
RazorWebSite Do not generate a validation summary when `excludePropertyErrors` unless specific model has an error 2016-09-08 15:36:47 -07:00
RoutingWebSite Merge branch 'rel/1.0.1' into dev 2016-08-01 14:16:58 -07:00
SimpleWebSite One build to rule them all 2016-07-06 16:21:18 -07:00
TagHelpersWebSite
UserClassLibrary
VersioningWebSite One build to rule them all 2016-07-06 16:21:18 -07:00
WebApiCompatShimWebSite
XmlFormattersWebSite