()
| 5324 | |
| 5325 | #[test] |
| 5326 | fn test_context_deep_equal() { |
| 5327 | let generators = context_generators(); |
| 5328 | for i in 0..generators.len() { |
| 5329 | test_context_deep_equal_helper_equal(&generators[i]); |
| 5330 | for j in 0..i { |
| 5331 | test_context_deep_equal_helper_nonequal(&generators[i], &generators[j]); |
| 5332 | } |
| 5333 | } |
| 5334 | } |
| 5335 | |
| 5336 | pub fn deserialize_error_lenient(serialized_string: &str, error_msg: &str) { |
| 5337 | use std::panic::catch_unwind; |
nothing calls this directly
no test coverage detected