Skip to main content

run_probe_pack

Function run_probe_pack 

Source
pub fn run_probe_pack(probes: &[ChallengeProbe]) -> ProbePackReport
Expand description

Run a probe pack against the default V1 classifier and return a report.

ยงExample

use stygian_charon::probe::{run_probe_pack, challenge_probe_pack};

let report = run_probe_pack(&challenge_probe_pack());
assert!(report.all_passed, "probe pack regressions: {:?}", report.failures());