TestResourceTestItem.cs (829B)
1 // ----------------------------------------------------------------------------- 2 // <copyright file="TestResourceTestItem.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 using Microsoft.Management.Configuration.Processor.DSCv3.Model; 10 11 /// <summary> 12 /// Implements IResourceTestItem for tests. 13 /// </summary> 14 internal class TestResourceTestItem : IResourceTestItem 15 { 16 /// <summary> 17 /// Gets or sets a value indicating whether the system is in the desired state. 18 /// </summary> 19 public bool InDesiredState { get; set; } 20 } 21 }