Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

19 строки
586B

  1. using System.Net;
  2. namespace CartWise.Web.Tests;
  3. // Rendered Razor output HTML-encodes special characters (e.g. ' -> '), so raw substring
  4. // assertions against response bodies produce false negatives for ordinary test data. Decode first.
  5. internal static class HtmlAssert
  6. {
  7. public static void Contains(string expectedText, string html)
  8. {
  9. Assert.Contains(expectedText, WebUtility.HtmlDecode(html));
  10. }
  11. public static void DoesNotContain(string expectedText, string html)
  12. {
  13. Assert.DoesNotContain(expectedText, WebUtility.HtmlDecode(html));
  14. }
  15. }

Powered by TurnKey Linux.