コード例 #1
0
 static void Main(string[] args)
 {
     var inputFile = new StreamReader(args[0]);
     var outputFile = new StreamWriter(args[1]);
     var parser = new StatLightReportParser(inputFile);
     var formatter = new NUnitTestResultsFormatter(outputFile);
     formatter.Format(parser.Parse());
 }
コード例 #2
0
        static void Main(string[] args)
        {
            var inputFile  = new StreamReader(args[0]);
            var outputFile = new StreamWriter(args[1]);
            var parser     = new StatLightReportParser(inputFile);
            var formatter  = new NUnitTestResultsFormatter(outputFile);

            formatter.Format(parser.Parse());
        }