winget-cli

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

PSConfigurationTestResult.cs (1173B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="PSConfigurationTestResult.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGet.Configuration.Engine.PSObjects
      8 {
      9     /// <summary>
     10     /// Must match ConfigurationTestResult.
     11     /// </summary>
     12     public enum PSConfigurationTestResult
     13     {
     14         /// <summary>
     15         /// The result is unknown.
     16         /// </summary>
     17         Unknown,
     18 
     19         /// <summary>
     20         /// The system is in the state described by the configuration.
     21         /// </summary>
     22         Positive,
     23 
     24         /// <summary>
     25         /// The system is not in the state described by the configuration.
     26         /// </summary>
     27         Negative,
     28 
     29         /// <summary>
     30         /// Running the test failed.
     31         /// </summary>
     32         Failed,
     33 
     34         /// <summary>
     35         /// The test was not run because it was not applicable.
     36         /// </summary>
     37         NotRun,
     38     }
     39 }