polyhorn_cli/test/
error.rs

1/// Error that is returned when an exception occurs during Polyhorn testing.
2#[derive(Debug)]
3pub enum Error {
4    /// Represents an error that occurs when interacting with `simctl`, the
5    /// Apple-provided CLI that manages the iOS Simulators on Mac.
6    IOS(simctl::Error),
7}