Skip to content

Instantly share code, notes, and snippets.

@scottsauber
Created July 21, 2020 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottsauber/7d382b519f5c5ac0200dede31a04d44a to your computer and use it in GitHub Desktop.
Save scottsauber/7d382b519f5c5ac0200dede31a04d44a 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();
// This assertion tests that the state has incremented by 1
counterComponent.Instance.CurrentCount.Should().Be(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment