pub struct ComprehensiveIntegrationTesting {
pub config: IntegrationTestConfig,
pub test_registry: Arc<RwLock<TestRegistry>>,
pub execution_engine: Arc<Mutex<TestExecutionEngine>>,
pub result_storage: Arc<Mutex<TestResultStorage>>,
pub performance_monitor: Arc<Mutex<TestPerformanceMonitor>>,
pub report_generator: Arc<Mutex<TestReportGenerator>>,
pub environment_manager: Arc<Mutex<TestEnvironmentManager>>,
}Expand description
Main comprehensive integration testing framework
Fields§
§config: IntegrationTestConfigFramework configuration
test_registry: Arc<RwLock<TestRegistry>>Test case registry
execution_engine: Arc<Mutex<TestExecutionEngine>>Test execution engine
result_storage: Arc<Mutex<TestResultStorage>>Result storage system
performance_monitor: Arc<Mutex<TestPerformanceMonitor>>Performance monitor
report_generator: Arc<Mutex<TestReportGenerator>>Report generator
environment_manager: Arc<Mutex<TestEnvironmentManager>>Environment manager
Implementations§
Source§impl ComprehensiveIntegrationTesting
impl ComprehensiveIntegrationTesting
Sourcepub fn new(config: IntegrationTestConfig) -> Self
pub fn new(config: IntegrationTestConfig) -> Self
Create a new comprehensive integration testing framework
Sourcepub fn register_test_case(
&self,
test_case: IntegrationTestCase,
) -> Result<(), String>
pub fn register_test_case( &self, test_case: IntegrationTestCase, ) -> Result<(), String>
Register a test case
Sourcepub async fn execute_all_tests(
&self,
) -> Result<Vec<IntegrationTestResult>, String>
pub async fn execute_all_tests( &self, ) -> Result<Vec<IntegrationTestResult>, String>
Execute all registered tests
Sourcepub async fn execute_test_suite(
&self,
suite_name: &str,
) -> Result<IntegrationTestResult, String>
pub async fn execute_test_suite( &self, suite_name: &str, ) -> Result<IntegrationTestResult, String>
Execute a specific test suite
Sourcepub fn generate_report(&self) -> Result<String, String>
pub fn generate_report(&self) -> Result<String, String>
Generate comprehensive test report
Auto Trait Implementations§
impl Freeze for ComprehensiveIntegrationTesting
impl RefUnwindSafe for ComprehensiveIntegrationTesting
impl Send for ComprehensiveIntegrationTesting
impl Sync for ComprehensiveIntegrationTesting
impl Unpin for ComprehensiveIntegrationTesting
impl UnwindSafe for ComprehensiveIntegrationTesting
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.