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.104.0 (build e79254c)",
date="2024-11-15T10:25:09.054Z")
@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
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forIntegTestCaseStack
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionprotected
IntegTestCaseStack
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
IntegTestCaseStack
(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, 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, renameLogicalId, reportMissingContextKey, resolve, setTerminationProtection, splitArn, toJsonString, toJsonString, toYamlString
Methods inherited from class software.constructs.Construct
getNode, isConstruct, toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods 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.
-