pulumi/sdk/dotnet/Pulumi/Testing/TestOptions.cs
Mikhail Shilkov a95a4d1195
Unit testing in .NET (#3696)
Mock-based testing in .NET
2020-03-11 23:10:01 +01:00

24 lines
705 B
C#

namespace Pulumi.Testing
{
/// <summary>
/// Optional settings for <see cref="Deployment.TestAsync{T}"/>.
/// </summary>
public class TestOptions
{
/// <summary>
/// Project name. Defaults to <b>"project"</b> if not specified.
/// </summary>
public string? ProjectName { get; set; }
/// <summary>
/// Stack name. Defaults to <b>"stack"</b> if not specified.
/// </summary>
public string? StackName { get; set; }
/// <summary>
/// Whether the test runs in Preview mode. Defaults to <b>true</b> if not specified.
/// </summary>
public bool? IsPreview { get; set; }
}
}