use std::path::Path;
use crate::crypto_helper::{CodecParseError, ProtocolParameters, SerDeShelleyFileFormat};
pub trait ProtocolInitializerTestExtension {
fn override_protocol_parameters(&mut self, protocol_parameters: &ProtocolParameters);
}
pub trait SerDeShelleyFileFormatTestExtension: SerDeShelleyFileFormat {
fn to_file<P: AsRef<Path>>(&self, path: P) -> Result<(), CodecParseError>;
}