diff --git a/testing-framework/core/src/scenario/definition.rs b/testing-framework/core/src/scenario/definition.rs index c423fb5..4bc70d5 100644 --- a/testing-framework/core/src/scenario/definition.rs +++ b/testing-framework/core/src/scenario/definition.rs @@ -134,21 +134,6 @@ impl Scenario { self.sources.external_nodes() } - #[must_use] - pub const fn uses_existing_cluster(&self) -> bool { - matches!(self.cluster_mode(), ClusterMode::ExistingCluster) - } - - #[must_use] - pub const fn is_managed(&self) -> bool { - matches!(self.cluster_mode(), ClusterMode::Managed) - } - - #[must_use] - pub const fn is_external_only(&self) -> bool { - matches!(self.cluster_mode(), ClusterMode::ExternalOnly) - } - #[must_use] pub fn has_external_nodes(&self) -> bool { !self.sources.external_nodes().is_empty()