@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-09T19:16:35.504Z")
public interface AssertionRequest
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.integtests.*; Object actual; Object expected; AssertionRequest assertionRequest = AssertionRequest.builder() .actual(actual) .expected(expected) // the properties below are optional .failDeployment(false) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
AssertionRequest.Builder
A builder for
AssertionRequest |
static class |
AssertionRequest.Jsii$Proxy
An implementation for
AssertionRequest |
Modifier and Type | Method and Description |
---|---|
static AssertionRequest.Builder |
builder() |
java.lang.Object |
getActual()
(experimental) The actual value received.
|
java.lang.Object |
getExpected()
(experimental) The expected value to assert.
|
default java.lang.Boolean |
getFailDeployment()
(experimental) Set this to true if a failed assertion should result in a CloudFormation deployment failure.
|
java.lang.Object getActual()
java.lang.Object getExpected()
default java.lang.Boolean getFailDeployment()
This is only necessary if assertions are being
executed outside of integ-runner
.
Default: false
static AssertionRequest.Builder builder()
AssertionRequest.Builder
of AssertionRequest