This commit is contained in:
dhbrett 2016-05-24 14:54:34 -07:00
Родитель 7029bb9912
Коммит e1a5ea4a91
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -68,7 +68,8 @@ namespace Microsoft.Edge.A11y
//If this is the first time, write the header line with the test names
if (!File.Exists(filePath))
{
var headerLine = "buildNumber,buildIteration,buildArchitecture,buildBranch,buildDate,time,score," + results.Select(r => r.Name).Aggregate((s1, s2) => s1 + "," + s2) + "\n";
var headerLine = "buildNumber,buildIteration,buildArchitecture,buildBranch,buildDate,time,score," +
results.Select(r => r.Name + "," + r.Name + "-details").Aggregate((s1, s2) => s1 + "," + s2) + "\n";
File.WriteAllText(filePath, headerLine);
}
@ -88,7 +89,9 @@ namespace Microsoft.Edge.A11y
//Write the results
var writer = File.AppendText(filePath);
var resultline = (build as string).Replace('.', ',') + "," + score + "," + time + "," + results.Select(r => r.Result.ToString()).Aggregate((s1, s2) => s1 + "," + s2);
var resultline = (build as string).Replace('.', ',') + "," + score + "," + time + "," +
results.Select(r => r.Result.ToString() + "," + (r.MoreInfo != null ? r.MoreInfo.Replace('\n', '\t') : ""))
.Aggregate((s1, s2) => s1 + "," + s2);
writer.WriteLine(resultline);
writer.Flush();