You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the conflicts between FA 'Should' extension
and FA.Web 'Should' extension
Add a test to maintain the sync between FA.Web assertions
and Primitives.HttpResponseMessageAssertions
Closes#72
/// Asserts that a Bad Request HTTP response content contains only a single error message identifiable by an expected field name and a wildcard error text.
42
+
/// </summary>
43
+
/// <remarks>
44
+
/// This assertion considers the HTTP response content a JSON generated by the ASP.NET Core 3.0 framework or less
45
+
/// </remarks>
46
+
/// <param name="expectedErrorField">
47
+
/// The expected field name.
48
+
/// </param>
49
+
/// <param name="expectedWildcardErrorMessage">
50
+
/// The wildcard pattern with which the error field associated error message is matched, where * and ? have special meanings.
51
+
/// </param>
52
+
/// <param name="because">
53
+
/// A formatted phrase as is supported by <see cref="string.Format(string,object[])" /> explaining why the assertion
54
+
/// is needed. If the phrase does not start with the word <i>because</i>, it is prepended automatically.
55
+
/// </param>
56
+
/// <param name="becauseArgs">
57
+
/// Zero or more objects to format using the placeholders in <see paramref="because" />.
0 commit comments