pub struct TestSuiteFixture {
pub binary_id: RustBinaryId,
pub binary_name: &'static str,
pub build_platform: BuildPlatform,
pub test_cases: Vec<TestCaseFixture>,
/* private fields */
}
Fields§
§binary_id: RustBinaryId
§binary_name: &'static str
§build_platform: BuildPlatform
§test_cases: Vec<TestCaseFixture>
Implementations§
Source§impl TestSuiteFixture
impl TestSuiteFixture
pub fn new( binary_id: &'static str, binary_name: &'static str, build_platform: BuildPlatform, test_cases: Vec<TestCaseFixture>, ) -> Self
pub fn with_property(self, property: TestSuiteFixtureProperty) -> Self
pub fn has_property(&self, property: TestSuiteFixtureProperty) -> bool
Trait Implementations§
Source§impl Clone for TestSuiteFixture
impl Clone for TestSuiteFixture
Source§fn clone(&self) -> TestSuiteFixture
fn clone(&self) -> TestSuiteFixture
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for TestSuiteFixture
impl RefUnwindSafe for TestSuiteFixture
impl Send for TestSuiteFixture
impl Sync for TestSuiteFixture
impl Unpin for TestSuiteFixture
impl UnwindSafe for TestSuiteFixture
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