Skip to content

Commit ef99e05

Browse files
authored
Minor fixes for unit-testing-platform-architecture.md
1 parent 3208829 commit ef99e05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/core/testing/unit-testing-platform-architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ By following this structured approach, you will gain a comprehensive understandi
4343

4444
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 <https://www.nuget.org/packages/Microsoft.Testing.Platform>.
4545

46-
In a console project `Contoso.UnitTests.exe` the following `Main` method defines the entry point:
46+
In a console project `Contoso.UnitTests.exe`, the following `Main` method defines the entry point:
4747

4848
```csharp
4949
public static async Task<int> Main(string[] args)
@@ -164,4 +164,4 @@ Let's start by getting familiar with the concept of [capabilities](./unit-testin
164164

165165
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.
166166

167-
All the services, helpers and technical information about how to access and use these services is listed [here](./unit-testing-platform-architecture-services.md).
167+
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).

0 commit comments

Comments
 (0)