/**
 * Copyright IBM Corp. 2024, 2025
 */
export class AssertConstants {
  public static readonly equals_action = 'equals';
  public static readonly not_equals_action = 'notEquals';
  public static readonly have_property_action = 'haveProperty';
  public static readonly not_have_property_action = 'notHaveProperty';

  public static readonly lessThan_action = 'lessThan';
  public static readonly greaterThan_action = 'greaterThan';
  public static readonly validateSchema_action = 'validateSchema';
  public static readonly inValidateSchema_action = 'inValidateSchema';
  public static readonly lengthOf_action = 'lengthOf';
  public static readonly include_action = 'include';

  public static readonly responseJsonTypeKey = 'json()';
  public static readonly responseHeaderKey = 'header()';
  public static readonly responseXmlTypeKey = 'xml()';
  public static readonly responseTextTypeKey = 'text()';

  public static readonly matches_action = 'matches';
  public static readonly type_action = 'type';
}
