winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Constants.cs (1984B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="Constants.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.UnitTests.Helpers
      8 {
      9     /// <summary>
     10     /// Constants used by the tests.
     11     /// </summary>
     12     public class Constants
     13     {
     14         /// <summary>
     15         /// The assembly name value used by xUnit traits.
     16         /// </summary>
     17         public const string AssemblyNameForTraits = "Microsoft.Management.Configuration.UnitTests";
     18 
     19         /// <summary>
     20         /// The namespace where xUnit traits will be defined.
     21         /// </summary>
     22         public const string NamespaceNameForTraits = "Microsoft.Management.Configuration.UnitTests.Helpers";
     23 
     24         /// <summary>
     25         /// The dynamic runtime factory handler identifier.
     26         /// </summary>
     27         public const string DynamicRuntimeHandlerIdentifier = "{73fea39f-6f4a-41c9-ba94-6fd14d633e40}";
     28 
     29         /// <summary>
     30         /// Test guid for enabling test mode for the dynamic runtime factory. Forces factory to exclude 'runas' verb and sets current IL to medium.
     31         /// </summary>
     32         public const string EnableDynamicFactoryTestMode = "1e62d683-2999-44e7-81f7-6f8f35e8d731";
     33 
     34         /// <summary>
     35         /// Test guid for allowing the restricted integrity level to be supported.
     36         /// </summary>
     37         public const string EnableRestrictedIntegrityLevelTestGuid = "5cae3226-185f-4289-815c-3c089d238dc6";
     38 
     39         /// <summary>
     40         /// Test guid for forcing units to have a high integrity level during the final routing of unit processor creation.
     41         /// </summary>
     42         public const string ForceHighIntegrityLevelUnitsTestGuid = "f698d20f-3584-4f28-bc75-28037e08e651";
     43     }
     44 }