diff --git a/docs/installer/design-docs/host-testing.md b/docs/installer/design-docs/host-testing.md index 0f7e6c3b676ddd0c7d93bad1bd3fa4cc45f63266..56279f79a3c1a44eb49245f174e0a2c9ee67dab2 100644 --- a/docs/installer/design-docs/host-testing.md +++ b/docs/installer/design-docs/host-testing.md @@ -32,7 +32,7 @@ Cons: Going forward we would keep these tests and add new ones to provide true End-to-End coverage. ### Native API tests -Small portion of the tests actually call specific exports on `hostfxr` or `hostpolicy` directly to test these. All these tests are in the `HostActivation` project under the `GivenThatICareAboutNativeHostApi` test class. +Small portion of the tests actually call specific exports on `hostfxr` or `hostpolicy` directly to test these. All these tests are in the `HostActivation` project under the `NativeHostApis` test class. These tests use a special test application (managed) which invokes the selected exports through PInvokes and performs the testing. The `HostActivation` test only prepares this app and executes it, looking for pieces of its output to verify the outcome. Ideally we would migrate these over time to the proposed Component tests infra. diff --git a/src/installer/test/HostActivation.Tests/GivenThatICareAboutNativeUnitTests.cs b/src/installer/test/HostActivation.Tests/NativeUnitTests.cs similarity index 94% rename from src/installer/test/HostActivation.Tests/GivenThatICareAboutNativeUnitTests.cs rename to src/installer/test/HostActivation.Tests/NativeUnitTests.cs index 4cfc640ab9465ff2aaa2df845e9c3a4620691b6e..ecffdbacf401dc17e232d84109c4d56bfd6b40ef 100644 --- a/src/installer/test/HostActivation.Tests/GivenThatICareAboutNativeUnitTests.cs +++ b/src/installer/test/HostActivation.Tests/NativeUnitTests.cs @@ -10,7 +10,7 @@ namespace Microsoft.DotNet.CoreSetup.Test.HostActivation.NativeUnitTests { - public class GivenThatICareAboutNativeUnitTests + public class NativeUnitTests { [Fact] public void Native_Test_Fx_Ver()