()
| 35 | } |
| 36 | |
| 37 | pub fn caller() -> Principal { |
| 38 | CALLER_ID.with(|c| *c.borrow()) |
| 39 | } |
| 40 | |
| 41 | pub fn spawn<F: 'static + std::future::Future<Output = ()>>(_future: F) { |
| 42 | // do nothing since this is a mock for testing purposes |
no outgoing calls
no test coverage detected