()
| 168 | use super::*; |
| 169 | |
| 170 | #[test] |
| 171 | fn construct() { |
| 172 | let addr = "127.0.0.1:0".parse().unwrap(); |
| 173 | let _ = Proxy::with_cert("", "") |
| 174 | .upstream_addr(addr) |
| 175 | .listen_addr(addr) |
| 176 | .white_list(vec![addr]) |
| 177 | .white_list([addr]); |
| 178 | } |
| 179 | } |
nothing calls this directly
no test coverage detected