Lines Matching refs:actual
41 let actual = ParamHeader::unmarshal(&binary)?; in test_param_header_success() localVariable
42 assert_eq!(actual, parsed); in test_param_header_success()
43 let b = actual.marshal()?; in test_param_header_success()
85 let actual = ParamForwardTsnSupported::unmarshal(&binary)?; in test_param_forward_tsn_supported_success() localVariable
86 assert_eq!(actual, parsed); in test_param_forward_tsn_supported_success()
87 let b = actual.marshal()?; in test_param_forward_tsn_supported_success()
143 let actual = ParamOutgoingResetRequest::unmarshal(&binary)?; in test_param_outgoing_reset_request_success() localVariable
144 assert_eq!(actual, parsed); in test_param_outgoing_reset_request_success()
145 let b = actual.marshal()?; in test_param_outgoing_reset_request_success()
187 let actual = ParamReconfigResponse::unmarshal(&binary)?; in test_param_reconfig_response_success() localVariable
188 assert_eq!(actual, parsed); in test_param_reconfig_response_success()
189 let b = actual.marshal()?; in test_param_reconfig_response_success()
233 let actual = result.to_string(); in test_reconfig_result_stringer() localVariable
234 assert_eq!(actual, expected, "Test case {expected}"); in test_reconfig_result_stringer()