pub struct TestCase {
pub name: String,
pub command: String,
pub expected_output: String,
pub file_path: PathBuf,
pub start_line: usize,
pub end_line: usize,
pub variables: Vec<VariableDecl>,
pub constraints: Vec<String>,
pub skip: Option<SkipDirective>,
}Fields§
§name: String§command: String§expected_output: String§file_path: PathBuf§start_line: usize§end_line: usize§variables: Vec<VariableDecl>§constraints: Vec<String>§skip: Option<SkipDirective>Implementations§
Trait Implementations§
impl StructuralPartialEq for TestCase
Auto Trait Implementations§
impl Freeze for TestCase
impl RefUnwindSafe for TestCase
impl Send for TestCase
impl Sync for TestCase
impl Unpin for TestCase
impl UnwindSafe for TestCase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more