/** * Constants to use for determining what kind of failure you have * * @public */ export declare class BoundaryFailureKindConstants { /** * Something went wrong in ContractCase internals. Almost certainly a bug. */ static readonly CASE_CORE_ERROR: string; /** * The user has configured ContractCase incorrectly */ static readonly CASE_CONFIGURATION_ERROR: string; /** * The test's expectations were not met */ static readonly CASE_FAILED_ASSERTION_ERROR: string; /** * The user-provided trigger failed when it was not expected to do so */ static readonly CASE_TRIGGER_ERROR: string; /** * The user-provided verification function (testResponse or testErrorResponse) failed */ static readonly CASE_VERIFY_RETURN_ERROR: string; /** * An error while contacting a contract broker */ static readonly CASE_BROKER_ERROR: string; } //# sourceMappingURL=BoundaryFailureKindConstants.d.ts.map