@"9789ecb9238687dfc20457022ac097f7eb3e94c6", 491)] // 1
        //[TestCase(@"https://github.com/kikito/middleclass",
        //        @"f67092082019d9640db1084c4128525141b722d5", 464)]
        //[TestCase(@"https://github.com/copycat-killer/awesome-copycats",
        //        @"1394a36c42b8984318e2e8c87bb3bd2d398f65a2", 452)]
        public void ParseGitRepository(string url, string commitPointer, int starCount)
        {
            Action <string> parse = code => {
                var parser =
                    new LuaParser(
                        new CommonTokenStream(new LuaLexer(new ANTLRStringStream(code))));
                parser.TraceDestination = Console.Error;
                var ret = parser.chunk();
            };

            MeasurePerformance(url, commitPointer, parse, "*.lua");
        }
         @"9789ecb9238687dfc20457022ac097f7eb3e94c6", 491)]  // 1
 //[TestCase(@"https://github.com/kikito/middleclass",
 //        @"f67092082019d9640db1084c4128525141b722d5", 464)]
 //[TestCase(@"https://github.com/copycat-killer/awesome-copycats",
 //        @"1394a36c42b8984318e2e8c87bb3bd2d398f65a2", 452)]
 public void ParseGitRepository(string url, string commitPointer, int starCount) {
     Action<string> parse = code => {
         var parser =
                 new LuaParser(
                         new CommonTokenStream(new LuaLexer(new ANTLRStringStream(code))));
         parser.TraceDestination = Console.Error;
         var ret = parser.chunk();
     };
     MeasurePerformance(url, commitPointer, parse, "*.lua");
 }