@inherits TestContext

IndexTest

@code { [Fact(DisplayName = "Checks that the Index component shows 10 posts")] public void Shows10Blogposts() { // Act var cut = Render(@); // Assert that the content has 10 article tags (each representing a blogpost) Assert.Equal(10, cut.FindAll("article").Count()); } public IndexTest() { Services.AddScoped(); } }