use rustvello_proto::identifiers::{InvocationId, TaskId};
pub fn test_task_id(name: &str) -> TaskId {
TaskId::new("test_module", name)
}
pub fn test_foreign_task_id(language: &str, name: &str) -> TaskId {
TaskId::foreign(language, "test_module", name)
}
pub fn generate_invocation_ids(count: usize) -> Vec<InvocationId> {
(0..count).map(|_| InvocationId::new()).collect()
}