test(Discord) Added test logs to discord and start of discord chat bot

This commit is contained in:
2022-04-28 12:56:49 -04:00
parent 156339786c
commit b65dae0884
25 changed files with 6277 additions and 181 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace TestAutomation.Utils;
public class TestMessage {
public string Title { get; set; } = "Name...";
public string Description { get; set; } = "";
public string Color { get; set; } = "FFFFFF";
public static TestMessage CreateFailedMessage(string description) {
return new TestMessage { Title = "Check Failed", Description = description, Color = "FF0000" };
}
}