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

            t.DownloadData("https://news.ycombinator.com/");
            TestForever(t.TokenizeAndParse);
        }
예제 #2
0
파일: Program.cs 프로젝트: samdubey/dotvvm
        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);
 }