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
@@ -31,15 +37,17 @@ public static void MarkupMatches(this string actual, string expected, string? us
31
37
32
38
/// <summary>
33
39
/// Verifies that the rendered markup from the <paramref name="actual"/> markup fragment matches
34
-
/// the <paramref name="expected"/> <see cref="IRenderedFragmentBase"/>, using the <see cref="HtmlComparer"/> type.
40
+
/// the <paramref name="expected"/> <see cref="IRenderedFragment"/>, using the <see cref="HtmlComparer"/> type.
35
41
/// </summary>
36
42
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
37
43
/// <param name="actual">The markup fragment to verify.</param>
@@ -84,7 +96,7 @@ public static void MarkupMatches(this string actual, INode expected, string? use
84
96
}
85
97
86
98
/// <summary>
87
-
/// Verifies that the rendered markup from the <paramref name="actual"/> <see cref="IRenderedFragmentBase"/> matches
99
+
/// Verifies that the rendered markup from the <paramref name="actual"/> <see cref="IRenderedFragment"/> matches
88
100
/// the <paramref name="expected"/> markup, using the <see cref="HtmlComparer"/> type.
89
101
/// </summary>
90
102
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
/// Verifies that the rendered markup from the <paramref name="actual"/> <see cref="IRenderedFragmentBase"/> matches
108
-
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragmentBase"/>, using the <see cref="HtmlComparer"/> type.
119
+
/// Verifies that the rendered markup from the <paramref name="actual"/> <see cref="IRenderedFragment"/> matches
120
+
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragment"/>, using the <see cref="HtmlComparer"/> type.
109
121
/// </summary>
110
122
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
111
123
/// <param name="actual">The rendered fragment to verify.</param>
/// Verifies that the <paramref name="actual"/> <see cref="INodeList"/> matches
127
-
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragmentBase"/>, using the <see cref="HtmlComparer"/>
139
+
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragment"/>, using the <see cref="HtmlComparer"/>
128
140
/// type.
129
141
/// </summary>
130
142
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
/// Verifies that the <paramref name="actual"/> <see cref="INode"/> matches
147
-
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragmentBase"/>, using the <see cref="HtmlComparer"/>
159
+
/// the rendered markup from the <paramref name="expected"/> <see cref="IRenderedFragment"/>, using the <see cref="HtmlComparer"/>
148
160
/// type.
149
161
/// </summary>
150
162
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
@@ -176,6 +188,8 @@ public static void MarkupMatches(this INode actual, string expected, string? use
/// Verifies that the rendered markup from the <paramref name="actual"/> <see cref="IRenderedFragment"/> matches
290
+
/// the rendered markup from the <paramref name="expected"/> <see cref="RenderFragment"/>, using the <see cref="HtmlComparer"/> type.
291
+
/// </summary>
292
+
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
293
+
/// <param name="actual">The rendered fragment to verify.</param>
294
+
/// <param name="expected">The render fragment whose output to compare against.</param>
295
+
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
/// Verifies that the markup from the <paramref name="actual"/> matches
311
+
/// the rendered markup from the <paramref name="expected"/> <see cref="RenderFragment"/>, using the <see cref="HtmlComparer"/> type.
312
+
/// </summary>
313
+
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
314
+
/// <param name="actual">The markup to verify.</param>
315
+
/// <param name="expected">The render fragment whose output to compare against.</param>
316
+
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
/// Verifies that the markup from the <paramref name="actual"/> matches
332
+
/// the rendered markup from the <paramref name="expected"/> <see cref="RenderFragment"/>, using the <see cref="HtmlComparer"/> type.
333
+
/// </summary>
334
+
/// <exception cref="HtmlEqualException">Thrown when the <paramref name="actual"/> markup does not match the <paramref name="expected"/> markup.</exception>
335
+
/// <param name="actual">The markup to verify.</param>
336
+
/// <param name="expected">The render fragment whose output to compare against.</param>
337
+
/// <param name="userMessage">A custom user message to display in case the verification fails.</param>
0 commit comments