Class IntegTestCaseStack
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Stack
software.amazon.awscdk.integtests.alpha.IntegTestCaseStack
- All Implemented Interfaces:
ITaggable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:04.274Z")
@Stability(Experimental)
public class IntegTestCaseStack
extends Stack
(experimental) An integration test case stack. Allows the definition of test properties that should apply to this stack.
This should be used if there are multiple stacks in the integration test and it is necessary to specify different test case option for each. Otherwise normal stacks should be added to IntegTest
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();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forIntegTestCaseStack.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedIntegTestCaseStack(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedIntegTestCaseStack(software.amazon.jsii.JsiiObjectRef objRef) IntegTestCaseStack(software.constructs.Construct scope, String id) IntegTestCaseStack(software.constructs.Construct scope, String id, IntegTestCaseStackProps props) -
Method Summary
Modifier and TypeMethodDescription(experimental) Make assertions on resources in this test case.static Boolean(experimental) Returns whether the construct is a IntegTestCaseStack.Methods inherited from class software.amazon.awscdk.Stack
addDependency, addDependency, addMetadata, addStackTag, addTransform, allocateLogicalId, exportStringListValue, exportStringListValue, exportValue, exportValue, formatArn, getAccount, getArtifactId, getAvailabilityZones, getBundlingRequired, getDependencies, getEnvironment, getLogicalId, getNested, getNestedStackParent, getNestedStackResource, getNotificationArns, getPartition, getRegion, getStackId, getStackName, getSynthesizer, getTags, getTemplateFile, getTemplateOptions, getTerminationProtection, getUrlSuffix, isStack, of, regionalFact, regionalFact, removeStackTag, renameLogicalId, reportMissingContextKey, resolve, setTerminationProtection, splitArn, toJsonString, toJsonString, toYamlStringMethods inherited from class software.constructs.Construct
getNode, isConstruct, toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
IntegTestCaseStack
protected IntegTestCaseStack(software.amazon.jsii.JsiiObjectRef objRef) -
IntegTestCaseStack
protected IntegTestCaseStack(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
IntegTestCaseStack
@Stability(Experimental) public IntegTestCaseStack(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable IntegTestCaseStackProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props-
-
IntegTestCaseStack
@Stability(Experimental) public IntegTestCaseStack(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope- This parameter is required.id- This parameter is required.
-
-
Method Details
-
isIntegTestCaseStack
(experimental) Returns whether the construct is a IntegTestCaseStack.- Parameters:
x- This parameter is required.
-
getAssertions
(experimental) Make assertions on resources in this test case.
-