public async Task TestParseEventsWeb()
        {
            HtmlItem html = HtmlItemFactory.GetHtmlItem(Constants.LocationType.WEB, "https://theblueshound.com/music-calendar");
            int      i    = await html.GrabAsync();

            var lm = new EventListMaker(html.Html);

            Assert.AreNotEqual(lm, null);
        }
        public async Task TestEventListMakerFile()
        {
            HtmlItem html = HtmlItemFactory.GetHtmlItem(ContentLib.Constants.LocationType.FILE, @"Cloud\\Classes\\Data\\Events.html");
            int      i    = await html.GrabAsync();

            var lm = new EventListMaker(html.Html);

            Assert.AreNotEqual(lm, null);
        }