#![deny(missing_docs)]
#[doc(hidden)]
pub extern crate inventory;
pub mod codegen;
pub mod error;
pub mod event;
pub mod recording;
pub mod registry;
pub mod snapshot;
pub mod types;
pub mod verification;
pub use codegen::{CodegenOptions, generate_test, generate_test_default};
pub use error::VictauriError;
pub use event::{AppEvent, EventLog, InteractionKind, IpcCall, IpcResult};
pub use recording::{EventRecorder, RecordedEvent, RecordedSession, StateCheckpoint};
pub use registry::{
CommandArg, CommandInfo, CommandInfoFactory, CommandRegistry, ScoredCommand,
auto_discovered_commands,
};
pub use snapshot::{DomElement, DomSnapshot, WindowState};
pub use types::{Divergence, DivergenceSeverity, MemoryDelta, RefHandle, VerificationResult};
pub use verification::{
AssertionCondition, AssertionResult, GhostCommand, GhostCommandReport, GhostSource,
IpcIntegrityReport, SemanticAssertion, check_ipc_integrity, detect_ghost_commands,
evaluate_assertion, verify_state,
};