Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink committed Aug 9, 2024
1 parent 2a0340d commit db87575
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ public interface IExtension

## Test Framework extension

The test framework is the primary extension that provides the testing platform with the ability to discover and execute tests. The test framework is responsible for communicating the results of the tests back to the testing platform. The test framework is the only mandatory extension required to execute a testing session.

### Register a testing framework

This section explains how to register the test framework with the testing platform. You register only one testing framework per test application builder using the `TestApplication.RegisterTestFramework` API as shown in [the testing platform architecture](./unit-testing-platform-architecture.md) documentation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,7 @@ IOutputDevice outputDevice = provider.GetOutputDevice();

await outputDevice.DisplayAsync(
this,
new FormattedTextOutputDeviceData(
$"TestingFramework version '{Version}' running tests with parallelism of {_dopValue}")
new FormattedTextOutputDeviceData($"TestingFramework version '{Version}' running tests with parallelism of {_dopValue}")
{
ForegroundColor = new SystemConsoleColor
{
Expand Down

0 comments on commit db87575

Please sign in to comment.