Exemplo n.º 1
0
        public static void TextShouldBe(this ITextBox textBox, string expectedText)
        {
            var actualText = textBox.ReadText();

            actualText.Should().Be(expectedText);
        }