Rename test class (dotnet/core-setup#7950)
authorNikita Potapenko <dev.potapy4@hotmail.com>
Wed, 4 Sep 2019 14:49:44 +0000 (17:49 +0300)
committerVitek Karas <vitek.karas@microsoft.com>
Wed, 4 Sep 2019 14:49:44 +0000 (07:49 -0700)
Commit migrated from https://github.com/dotnet/core-setup/commit/33d05af6ff91b7f8f0badb97f643ffd9d6c48521

docs/installer/design-docs/host-testing.md
src/installer/test/HostActivation.Tests/NativeUnitTests.cs [moved from src/installer/test/HostActivation.Tests/GivenThatICareAboutNativeUnitTests.cs with 94% similarity]

index 0f7e6c3..56279f7 100644 (file)
@@ -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.
 
@@ -10,7 +10,7 @@ using Microsoft.DotNet.Cli.Build.Framework;
 
 namespace Microsoft.DotNet.CoreSetup.Test.HostActivation.NativeUnitTests
 {
-    public class GivenThatICareAboutNativeUnitTests
+    public class NativeUnitTests
     {
         [Fact]
         public void Native_Test_Fx_Ver()