()
| 40 | |
| 41 | #[test] |
| 42 | fn test_apply_substitution_intersection() { |
| 43 | let subs = make_subs(&[("TValue", "Language")]); |
| 44 | |
| 45 | assert_eq!( |
| 46 | apply_substitution("TValue&Countable", &subs), |
| 47 | "Language&Countable" |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | #[test] |
| 52 | fn test_apply_substitution_generic() { |
nothing calls this directly
no test coverage detected