Skip to content

Commit dc05d02

Browse files
committed
test: 更新单元测试
1 parent 7bc38ca commit dc05d02

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/UnitTest/Components/SelectTreeTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public void Items_Ok()
1313
var cut = Context.RenderComponent<SelectTree<string>>(builder =>
1414
{
1515
builder.Add(p => p.ShowIcon, true);
16+
builder.Add(p => p.IsReset, false);
1617
builder.Add(p => p.ModelEqualityComparer, (s1, s2) => { return true; });
1718
builder.Add(p => p.OnExpandNodeAsync, (s) => { return Task.FromResult(new List<TreeViewItem<string>>().AsEnumerable()); });
1819
builder.Add(p => p.CustomKeyAttribute, typeof(string));

0 commit comments

Comments
 (0)