Skip to content

Instantly share code, notes, and snippets.

@scottsauber
Created July 21, 2020 20:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save scottsauber/176c1161b23856514302355cbd1ee160 to your computer and use it in GitHub Desktop.
public class CounterTests : TestContext
{
[Fact]
public void ShouldIncrementCountWhenButtonIsClicked()
{
var counterComponent = RenderComponent<Counter>();
counterComponent.Find("button").Click();
// Asserts actual user behavior
counterComponent.Find("#current-count").TextContent.Should().Be("Current count: 1");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment