форматирование вывода результатов тестирования в почте.

This commit is contained in:
2023-10-21 02:47:21 +03:00
parent a334d55522
commit 7fac46b249
10 changed files with 85 additions and 23 deletions

View File

@@ -386,7 +386,7 @@ public enum Current {
case ServerSapfor:
return "тестовая версия SAPFOR";
case SapforTasksPackage:
return "сценарий SAPFOR";
return "пакет задач SAPFOR";
case SapforProfile:
return "Профиль SAPFOR";
case SapforProfileSetting:

View File

@@ -79,6 +79,9 @@ public class Utils {
public static String Brackets(Object o) {
return "[" + o.toString() + "]";
}
public static String Bold(Object o) {
return "<b>" + o.toString() + "</b>";
}
public static String RBrackets(Object o) {
return "(" + o.toString() + ")";
}