pact_verifier 1.3.4

Pact-Rust support library that implements provider verification functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Structs for collecting metrics for verification

/// Metrics data to send after running a verification
#[derive(Clone, Debug)]
pub struct VerificationMetrics {
  /// test framework used to run the tests
  pub test_framework: String,
  /// Name of the application that ran the tests
  pub app_name: String,
  /// Version of the application that ran the tests
  pub app_version: String
}