We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf044a commit 3de074bCopy full SHA for 3de074b
test/UnitTest/Components/TableTest.cs
@@ -3,7 +3,6 @@
3
// See the LICENSE file in the project root for more information.
4
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
5
6
-using Bunit;
7
using Microsoft.AspNetCore.Components.Forms;
8
using Microsoft.AspNetCore.Components.Web;
9
using Microsoft.AspNetCore.Components.Web.Virtualization;
@@ -762,6 +761,9 @@ public async Task ShowColumnList_Ok()
762
761
var item = cut.FindComponents<Checkbox<bool>>()[0];
763
await cut.InvokeAsync(item.Instance.TriggerClick);
764
Assert.True(show);
+
765
+ await cut.InvokeAsync(item.Instance.TriggerClick);
766
+ Assert.False(show);
767
}
768
769
[Fact]
0 commit comments