()
| 24 | /// in tests where determinism matters. |
| 25 | #[cfg(any(feature = "conversion", test))] |
| 26 | pub fn new() -> Self { |
| 27 | Self::with_peer(PeerId(core_types::uuid::generate_uuid())) |
| 28 | } |
| 29 | |
| 30 | /// Construct a session bound to a specific `PeerId`. Used by tests; production code wants |
| 31 | /// `Session::new`. |
nothing calls this directly
no test coverage detected