Lines Matching refs:calling_info
122 let calling_info = CallingInfo::build(Some(Value::Number(specific_user_id)), &process_info); in test_build_callig_info_specific_and_hap() localVariable
123 assert_eq!(calling_info.user_id(), specific_user_id as i32); in test_build_callig_info_specific_and_hap()
126 assert_eq!(calling_info.owner_info(), &owner_info); in test_build_callig_info_specific_and_hap()
142 let calling_info = CallingInfo::build(None, &process_info); in test_build_callig_info_hap() localVariable
143 assert_eq!(calling_info.user_id(), user_id as i32); in test_build_callig_info_hap()
145 assert_eq!(calling_info.owner_info(), &owner_info); in test_build_callig_info_hap()
160 let calling_info = CallingInfo::build(None, &process_info); in test_build_callig_info_native() localVariable
161 assert_eq!(calling_info.user_id(), user_id as i32); in test_build_callig_info_native()
163 assert_eq!(calling_info.owner_info(), &owner_info); in test_build_callig_info_native()
179 let calling_info = CallingInfo::build(Some(Value::Number(specific_user_id)), &process_info); in test_build_callig_info_specific_and_native() localVariable
181 assert_eq!(calling_info.user_id(), specific_user_id as i32); in test_build_callig_info_specific_and_native()
183 assert_eq!(calling_info.owner_info(), &owner_info); in test_build_callig_info_specific_and_native()