Hi, for function to test like following: `````` fn handle_response(response:Response) { save_db(response.get_users()); let unread_count = read_unread_from_db(); send_push_notification(unread_count); } `````` I'd like to make sure send_push_notification did get called with the desired count in the unit test. How could I do this? Thanks a lot!