public override string ToString()
 {
     return(string.Join(Environment.NewLine, $"{{",
                        $"Update Time: {UpdatedTime}",
                        $"Expected Results:",
                        (ExpectedResults.Any() ? $"{string.Join(Environment.NewLine, ExpectedResults.Select(row => $"{{{string.Join(", ", row)}}}"))}" : "{}") +
                        $"}}"));
 }