From 37d5cdba94aeec37dd06d1da92a4871a55fa8fcc Mon Sep 17 00:00:00 2001 From: David Gardiner Date: Fri, 11 Jan 2019 22:45:38 +1030 Subject: [PATCH] Add link to IClassFixture (#10334) --- aspnetcore/test/integration-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/test/integration-tests.md b/aspnetcore/test/integration-tests.md index f938d0b4ad..d26aab57e0 100644 --- a/aspnetcore/test/integration-tests.md +++ b/aspnetcore/test/integration-tests.md @@ -5,7 +5,7 @@ description: Learn how integration tests ensure that an app's components functio monikerRange: '>= aspnetcore-2.1' ms.author: riande ms.custom: mvc -ms.date: 11/26/2018 +ms.date: 01/11/2019 uid: test/integration-tests --- # Integration tests in ASP.NET Core @@ -108,7 +108,7 @@ These prerequisites can be seen in the [sample app](https://github.com/aspnet/Do [WebApplicationFactory<TEntryPoint>](/dotnet/api/microsoft.aspnetcore.mvc.testing.webapplicationfactory-1) is used to create a [TestServer](/dotnet/api/microsoft.aspnetcore.testhost.testserver) for the integration tests. `TEntryPoint` is the entry point class of the SUT, usually the `Startup` class. -Test classes implement a *class fixture* interface (`IClassFixture`) to indicate the class contains tests and provide shared object instances across the tests in the class. +Test classes implement a *class fixture* interface ([IClassFixture](https://xunit.github.io/docs/shared-context#class-fixture)) to indicate the class contains tests and provide shared object instances across the tests in the class. ### Basic test of app endpoints