Pact.PactVerifier.VerificationMetrics (pact_verifier_ex v0.1.6)

Copy Markdown

Structure for providing metrics and metadata about the verification process.

This struct is used to supply information about the test framework, application name, and application version to the verifier. These metrics may be published to the Pact Broker or used for reporting and analytics.

Fields

  • test_framework - The name of the test framework being used (e.g., ExUnit, ESpec).
  • app_name - The name of the application running the verification.
  • app_version - The version of the application running the verification.

Summary

Types

t()

@type t() :: %Pact.PactVerifier.VerificationMetrics{
  app_name: String.t(),
  app_version: String.t(),
  test_framework: String.t()
}