Basic automated tests through the CLI

This commit is contained in:
Tyrrrz
2021-07-19 20:09:35 +03:00
parent daa8c0a735
commit 85d53d0e94
11 changed files with 445 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
using AngleSharp.Html.Dom;
using AngleSharp.Html.Parser;
namespace DiscordChatExporter.Cli.Tests.Utils
{
internal static class Html
{
private static readonly IHtmlParser Parser = new HtmlParser();
public static IHtmlDocument Parse(string source) => Parser.ParseDocument(source);
}
}