Interface IIntegTestCaseStackProps
(experimental) Properties of an integration test case stack.
Inherited Members
Namespace: Amazon.CDK.IntegTests.Alpha
Assembly: Amazon.CDK.IntegTests.Alpha.dll
Syntax (csharp)
public interface IIntegTestCaseStackProps : ITestOptions, IStackProps
Syntax (vb)
Public Interface IIntegTestCaseStackProps
Inherits ITestOptions, IStackProps
Remarks
Stability: Experimental
ExampleMetadata: infused
Examples
App app;
Stack stackUnderTest;
var testCaseWithAssets = new IntegTestCaseStack(app, "TestCaseAssets", new IntegTestCaseStackProps {
DiffAssets = true
});
new IntegTest(app, "Integ", new IntegTestProps { TestCases = new [] { stackUnderTest, testCaseWithAssets } });