diff --git a/Rs.DeweyTester/Entitys/TestFixtureManager.cs b/Rs.DeweyTester/Entitys/TestFixtureManager.cs index ad736f0..5b1180d 100644 --- a/Rs.DeweyTester/Entitys/TestFixtureManager.cs +++ b/Rs.DeweyTester/Entitys/TestFixtureManager.cs @@ -617,7 +617,8 @@ namespace Rs.MotionPlat.Entitys // File.AppendAllText(summaryPath, CsvTitle); //} //File.AppendAllText(summaryPath, items[3]); - DevLog.Summary(CsvTitle, items[3]); + string csvContent = string.Join(",", items[3], items[4], items[5]); + DevLog.Summary(CsvTitle, csvContent); this.EndTestTime = DateTime.Now; this.LastCT = (EndTestTime - StartTestTime).TotalSeconds; TotalCount++;