(
&self,
_options: Option<CreateContainerOptions>,
_config: ContainerCreateBody,
)
| 928 | } |
| 929 | |
| 930 | async fn create_container( |
| 931 | &self, |
| 932 | _options: Option<CreateContainerOptions>, |
| 933 | _config: ContainerCreateBody, |
| 934 | ) -> Result<String, String> { |
| 935 | Ok("test-id".to_string()) |
| 936 | } |
| 937 | |
| 938 | async fn start_container(&self, _id: &str) -> Result<(), String> { |
| 939 | Ok(()) |
no outgoing calls
no test coverage detected