You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was finding if a .trx file is specified which does not exist, Trxr would stop working. So I modified the Main method within the program to cover the situations of no file specified, an incorrect file specified to go with correct terms provided.
I did this as I was finding MSText.exe will not run one test at a time and I can run them in that manner if I specify each test at a time. This produces many trx files. Now I need to find a way to combine my many test results into one file.
The text was updated successfully, but these errors were encountered:
I was finding if a .trx file is specified which does not exist, Trxr would stop working. So I modified the Main method within the program to cover the situations of no file specified, an incorrect file specified to go with correct terms provided.
Program.cs line 26:
static void Main(string[] args)
{
if (args.Any())
{
string path = args[0].ToString();
if (!File.Exists(path))
{
Console.WriteLine("Incorrect file specified, Trxer.exe ");
return;
}
Console.WriteLine("Trx File\n{0}", args[0]);
Transform(args[0], PrepareXsl());
}
else
{
Console.WriteLine("No trx file specified, Trxer.exe ");
}
}
Tests:
I did this as I was finding MSText.exe will not run one test at a time and I can run them in that manner if I specify each test at a time. This produces many trx files. Now I need to find a way to combine my many test results into one file.
The text was updated successfully, but these errors were encountered: