enum AssertionType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.IntegTests.AssertionType |
Java | software.amazon.awscdk.integtests.AssertionType |
Python | aws_cdk.integ_tests.AssertionType |
TypeScript (source) | @aws-cdk/integ-tests » AssertionType |
The type of assertion to perform.
Members
| Name | Description |
|---|---|
| EQUALS | Assert that two values are equal. |
| OBJECT_LIKE | The keys and their values must be present in the target but the target can be a superset. |
| ARRAY_WITH | Matches the specified pattern with the array The set of elements must be in the same order as would be found. |
EQUALS
Assert that two values are equal.
OBJECT_LIKE
The keys and their values must be present in the target but the target can be a superset.
ARRAY_WITH
Matches the specified pattern with the array The set of elements must be in the same order as would be found.

.NET
Java
Python
TypeScript (