Interface IntegTestCaseStackProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.736Z") @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();