Skip to content

Commit

Permalink
test_case: Add bridge_backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Oct 7, 2024
1 parent 9af3a2b commit b29cf19
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config/test_case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pub struct TestCaseEnv {
pub sequencer: Vec<(&'static str, &'static str)>,
pub prover: Vec<(&'static str, &'static str)>,
pub bitcoin: Vec<(&'static str, &'static str)>,
pub bridge_backend: Vec<(&'static str, &'static str)>,
}

impl TestCaseEnv {
Expand Down Expand Up @@ -36,6 +37,10 @@ impl TestCaseEnv {
pub fn bitcoin(&self) -> Vec<(&'static str, &'static str)> {
[self.test_env(), self.bitcoin.clone()].concat()
}

pub fn bridge_backend(&self) -> Vec<(&'static str, &'static str)> {
[self.test_env(), self.bridge_backend.clone()].concat()
}
}

#[derive(Clone)]
Expand Down

0 comments on commit b29cf19

Please sign in to comment.