(
env: &PocketIc,
user_id: Principal,
station_canister_id: CanisterId,
request_operation_input: RequestOperationInput,
)
| 235 | } |
| 236 | |
| 237 | pub fn submit_request( |
| 238 | env: &PocketIc, |
| 239 | user_id: Principal, |
| 240 | station_canister_id: CanisterId, |
| 241 | request_operation_input: RequestOperationInput, |
| 242 | ) -> RequestDTO { |
| 243 | let res = submit_request_raw(env, user_id, station_canister_id, request_operation_input); |
| 244 | res.unwrap().0.unwrap().request |
| 245 | } |
| 246 | |
| 247 | pub fn submit_request_with_expected_trap( |
| 248 | env: &PocketIc, |