feat: expand cockpit integrations and support workflows
Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
This commit is contained in:
@@ -126,7 +126,7 @@ public class SupportCaseTest
|
||||
_supportCase.UpdateSupportCaseDataCache(relation, [dataTable]);
|
||||
|
||||
// Assert
|
||||
var actual = _supportCase.GetSupportCaseHealthcardData(relation, new cValueAddress() { ValueTable = tableName, ValueColumn = columnName });
|
||||
var actual = _supportCase.GetSupportCaseHealthcardData(relation, new cValueAddress() { ValueTable = tableName, ValueColumn = columnName }, default);
|
||||
|
||||
Assert.Equal(expected, actual);
|
||||
}
|
||||
@@ -145,7 +145,7 @@ public class SupportCaseTest
|
||||
]
|
||||
};
|
||||
// Act
|
||||
var actual = _supportCase.GetSupportCaseHealthcardData(relation, new cValueAddress() { ValueTable = "NonExistentTable", ValueColumn = "NonExistentColumn" });
|
||||
var actual = _supportCase.GetSupportCaseHealthcardData(relation, new cValueAddress() { ValueTable = "NonExistentTable", ValueColumn = "NonExistentColumn" }, default);
|
||||
// Assert
|
||||
Assert.Null(actual);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user