pub struct IntegrationTestSuite<T: Float + Send + Default> { /* private fields */ }Expand description
Comprehensive integration test suite
Implementations§
Source§impl<T: Float + Send + Default> IntegrationTestSuite<T>
impl<T: Float + Send + Default> IntegrationTestSuite<T>
Sourcepub fn new(config: IntegrationConfig) -> Self
pub fn new(config: IntegrationConfig) -> Self
Create a new integration test suite
Sourcepub fn load_baseline_metrics(
&mut self,
_path: &str,
) -> Result<(), IntegrationError>
pub fn load_baseline_metrics( &mut self, _path: &str, ) -> Result<(), IntegrationError>
Load baseline metrics for performance comparison
Sourcepub fn generate_test_networks(&mut self) -> Result<(), IntegrationError>
pub fn generate_test_networks(&mut self) -> Result<(), IntegrationError>
Generate test networks for integration testing
Sourcepub fn generate_test_datasets(&mut self) -> Result<(), IntegrationError>
pub fn generate_test_datasets(&mut self) -> Result<(), IntegrationError>
Generate test datasets
Sourcepub fn run_all_tests(&mut self) -> Result<IntegrationResult, IntegrationError>
pub fn run_all_tests(&mut self) -> Result<IntegrationResult, IntegrationError>
Run the complete integration test suite
Auto Trait Implementations§
impl<T> Freeze for IntegrationTestSuite<T>
impl<T> RefUnwindSafe for IntegrationTestSuite<T>where
T: RefUnwindSafe,
impl<T> Send for IntegrationTestSuite<T>
impl<T> Sync for IntegrationTestSuite<T>where
T: Sync,
impl<T> Unpin for IntegrationTestSuite<T>where
T: Unpin,
impl<T> UnsafeUnpin for IntegrationTestSuite<T>
impl<T> UnwindSafe for IntegrationTestSuite<T>where
T: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more