Implement the initial set of reporter events

This commit is contained in:
Omar Abdulla
2025-08-24 19:45:01 +03:00
parent bd5ff6d75e
commit cbb6a11404
10 changed files with 413 additions and 27 deletions
+2 -1
View File
@@ -71,6 +71,7 @@ impl Case {
define_wrapper_type!(
/// A wrapper type for the index of test cases found in metadata file.
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
#[serde(transparent)]
pub struct CaseIdx(usize) impl Display;
);