Implemented deferred entry manipulation

This commit is contained in:
2025-01-28 18:10:56 +01:00
parent 5a342e2c53
commit fecbc0717b
9 changed files with 83 additions and 37 deletions

View File

@@ -72,7 +72,7 @@ public class HopFrameTablePageTests : TestContext {
var tableManagerMock = new Mock<ITableManager>();
var items = new List<object> { new MyTable(), new MyTable() };
tableManagerMock.Setup(m => m.LoadPage(It.IsAny<int>(), It.IsAny<int>())).Returns(items.AsAsyncQueryable());
tableManagerMock.Setup(t => t.DisplayProperty(It.IsAny<object>(), It.IsAny<PropertyConfig>(), null))
tableManagerMock.Setup(t => t.DisplayProperty(It.IsAny<object>(), It.IsAny<PropertyConfig>(), null, null))
.ReturnsAsync(string.Empty);
contextExplorerMock.Setup(e => e.GetTable("Table1")).Returns(tableConfig);