1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! Core functionality for creating mock objects with Simulacrum.

extern crate debugit;
extern crate handlebox;
extern crate simulacrum_shared;

#[cfg(test)]
extern crate simulacrum_user;

pub mod constraint;
pub mod expectation;
pub mod method;
pub mod mock;
mod store;

pub type MethodName = &'static str;

pub use handlebox::Handle as ExpectationId;

pub use self::mock::Expectations;
pub use self::method::Method;