Skip to content

Commit

Permalink
Added additional check on forms page.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Feb 23, 2024
1 parent 68f7992 commit ab2bdc4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ private void TestDialogBoxPaging()

textRenderable.WrappedText.Count.ShouldBe(5);

var areAnyBlank = textRenderable.WrappedText.Any(item => string.IsNullOrEmpty(item));
areAnyBlank.ShouldNotBe(true, "because paging should not result in any blank lines");
}

private void TestRemovalOfBinding()
Expand Down

0 comments on commit ab2bdc4

Please sign in to comment.