//! This code was taken from *fd* at 30-06-2025. use std::{path::PathBuf, process}; use rocie_client::apis::configuration::Configuration; mod init; pub(crate) mod log; /// Environment for the integration tests. pub(crate) struct TestEnv { pub(crate) name: &'static str, pub(crate) port: String, pub(crate) test_dir: PathBuf, pub(crate) paths: Paths, pub(crate) server_process: Option, pub(crate) config: Configuration, } pub(crate) struct Paths { pub(crate) db: PathBuf, pub(crate) test_dir: PathBuf, }