Skip to content

Commit b29cf19

Browse files
committed
test_case: Add bridge_backend.
1 parent 9af3a2b commit b29cf19

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/config/test_case.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pub struct TestCaseEnv {
99
pub sequencer: Vec<(&'static str, &'static str)>,
1010
pub prover: Vec<(&'static str, &'static str)>,
1111
pub bitcoin: Vec<(&'static str, &'static str)>,
12+
pub bridge_backend: Vec<(&'static str, &'static str)>,
1213
}
1314

1415
impl TestCaseEnv {
@@ -36,6 +37,10 @@ impl TestCaseEnv {
3637
pub fn bitcoin(&self) -> Vec<(&'static str, &'static str)> {
3738
[self.test_env(), self.bitcoin.clone()].concat()
3839
}
40+
41+
pub fn bridge_backend(&self) -> Vec<(&'static str, &'static str)> {
42+
[self.test_env(), self.bridge_backend.clone()].concat()
43+
}
3944
}
4045

4146
#[derive(Clone)]

0 commit comments

Comments
 (0)