示例#1
0
        private static void ParserTest()
        {
            var t = new ParserTests();

            t.DownloadData("https://news.ycombinator.com/");
            TestForever(t.TokenizeAndParse);
        }
示例#2
0
        static void Main(string[] args)
        {
            var t = new ParserTests();

            t.DownloadData("https://news.ycombinator.com/");
            TestForever(t.TokenizeAndParse);
        }
示例#3
0
文件: Program.cs 项目: darilek/dotvvm
 static void Main(string[] args)
 {
     var t = new ParserTests();
     t.DownloadData("https://news.ycombinator.com/");
     TestForever(t.TokenizeAndParse);
 }