private static void RunGeneration(CommandLineArgs commandLineArgs)
 {
     if (commandLineArgs.TSVFile != null)
     {
         TestFileGenerator.GenerateTestFile(commandLineArgs.TSVFile, commandLineArgs.OutputFile);
     }
 }
Exemplo n.º 2
0
    protected void OnGenerateInputClick(object sender, EventArgs e)
    {
        sw.Start();

        var tfg = new TestFileGenerator();

        tfg.write(input_files[0], email_cols[0], 4, 24655);
        tfg.write(input_files[1], email_cols[1], 5, 35268);

        sw.Stop();
        labelStatus.LabelProp = "Finished generating test in: " + sw.ElapsedMilliseconds.ToString() + "ms.";
    }