1
0
Fork 0
forked from wry/wry

config: add TestConfig

This commit is contained in:
Julian Orth 2022-05-02 20:53:07 +02:00
parent f92c9c6027
commit e212e0b8b1
7 changed files with 175 additions and 6 deletions

View file

@ -4,6 +4,7 @@ use {
it::{
test_backend::TestBackend,
test_client::TestClient,
test_config::TestConfig,
test_error::{TestError, TestErrorExt},
test_ifs::test_display::TestDisplay,
test_transport::TestTransport,
@ -25,6 +26,7 @@ pub struct TestRun {
pub errors: Stack<String>,
pub server_addr: c::sockaddr_un,
pub dir: String,
pub cfg: Rc<TestConfig>,
}
impl TestRun {