Skip to content

Commit 22c8414

Browse files
committed
test: 更新单元测试
1 parent 9ee6720 commit 22c8414

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

test/UnitTest/Components/EditorFormTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ public void EditorItem_Ok()
269269
new("False", "Test-False")
270270
});
271271
builder.AddAttribute(index++, nameof(EditorItem<Foo, bool>.ShowSearchWhenSelect), false);
272-
builder.AddAttribute(index++, nameof(EditorItem<Foo, bool>.IsFixedSearchWhenSelect), false);
273272
builder.AddAttribute(index++, nameof(EditorItem<Foo, bool>.IsPopover), false);
274273
builder.CloseComponent();
275274
});

test/UnitTest/Components/TableTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5045,7 +5045,6 @@ public void TableColumn_Property()
50455045
Assert.Equal("test", column.Instance.GroupName);
50465046
Assert.Equal(1, column.Instance.GroupOrder);
50475047
Assert.True(column.Instance.ShowSearchWhenSelect);
5048-
Assert.True(column.Instance.IsFixedSearchWhenSelect);
50495048
Assert.False(column.Instance.IsPopover);
50505049
Assert.NotNull(column.Instance.LookupService);
50515050

test/UnitTest/Extensions/ITableColumnExtensionsTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ public void CopyValue_Ok()
101101
HeaderTextWrap = true,
102102
HeaderTextTooltip = "test tooltip",
103103
ShowSearchWhenSelect = true,
104-
IsFixedSearchWhenSelect = true,
105104
IsPopover = true,
106105
ShowCopyColumn = true,
107106
Step = "0.01",
@@ -166,7 +165,6 @@ public void CopyValue_Ok()
166165
Assert.True(col.HeaderTextWrap);
167166
Assert.Equal("test tooltip", col.HeaderTextTooltip);
168167
Assert.True(col.ShowSearchWhenSelect);
169-
Assert.True(col.IsFixedSearchWhenSelect);
170168
Assert.True(col.IsPopover);
171169
Assert.True(col.ShowCopyColumn);
172170
Assert.Equal("0.01", col.Step);

0 commit comments

Comments
 (0)