Interface IntegTestCaseStackProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, StackProps, TestOptions
All Known Implementing Classes:
IntegTestCaseStackProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:25.347Z") @Stability(Experimental) public interface IntegTestCaseStackProps extends software.amazon.jsii.JsiiSerializable, TestOptions, StackProps
(experimental) Properties of an integration test case stack.

Example:

 App app;
 Stack stackUnderTest;
 IntegTestCaseStack testCaseWithAssets = IntegTestCaseStack.Builder.create(app, "TestCaseAssets")
         .diffAssets(true)
         .build();
 IntegTest.Builder.create(app, "Integ").testCases(List.of(stackUnderTest, testCaseWithAssets)).build();