Merge remote-tracking branch 'origin/main' into feature/handle-exceptions

This commit is contained in:
Omar Abdulla
2025-07-22 06:43:48 +03:00
2 changed files with 11 additions and 11 deletions
+6 -6
View File
@@ -16,12 +16,6 @@ pub struct Case {
pub expected: Option<Expected>,
}
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)]
CaseIdx(usize);
);
impl Case {
pub fn inputs_iterator(&self) -> impl Iterator<Item = Input> {
let inputs_len = self.inputs.len();
@@ -39,3 +33,9 @@ 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)]
CaseIdx(usize);
);