pub trait CatalogTrackTestChangeOperations {
// Required methods
fn track_test_created(&mut self, test: Test) -> Result<()>;
fn track_test_deleted(&mut self, test: Test) -> Result<()>;
}Expand description
Trait for tracking test definition changes during a transaction.