From ef99e055c29c54c2c299ceb485debf9768bcb511 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Wed, 27 Nov 2024 16:38:50 +0100 Subject: [PATCH] Minor fixes for unit-testing-platform-architecture.md --- docs/core/testing/unit-testing-platform-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/testing/unit-testing-platform-architecture.md b/docs/core/testing/unit-testing-platform-architecture.md index 137bcc844b93d..d497607ee958b 100644 --- a/docs/core/testing/unit-testing-platform-architecture.md +++ b/docs/core/testing/unit-testing-platform-architecture.md @@ -43,7 +43,7 @@ By following this structured approach, you will gain a comprehensive understandi To introduce the architecture of the testing platform, this document will use the classic console application (for Windows) as the host. The samples in this document are written in C#, but you can use the testing platform with any language that supports the .NET Ecma specification, and run on any OS supported by .NET. To use the platform, simply reference the `Microsoft.Testing.Platform.dll` assembly, which can be consumed through the official NuGet package available at . -In a console project `Contoso.UnitTests.exe` the following `Main` method defines the entry point: +In a console project `Contoso.UnitTests.exe`, the following `Main` method defines the entry point: ```csharp public static async Task Main(string[] args) @@ -164,4 +164,4 @@ Let's start by getting familiar with the concept of [capabilities](./unit-testin The testing platform offers valuable services to both the testing framework and extension points. These services cater to common needs such as accessing the configuration, parsing and retrieving command-line arguments, obtaining the logging factory, and accessing the logging system, among others. `IServiceProvider` implements the _service locator pattern_ for the testing platform. -All the services, helpers and technical information about how to access and use these services is listed [here](./unit-testing-platform-architecture-services.md). +All the services, helpers, and technical information about how to access and use these services is listed in [Microsoft.Testing.Platform Services documentation](./unit-testing-platform-architecture-services.md).