()
| 22 | |
| 23 | #[test] |
| 24 | fn test_apply_substitution_nullable() { |
| 25 | let subs = make_subs(&[("TValue", "Language")]); |
| 26 | |
| 27 | assert_eq!(apply_substitution("?TValue", &subs), "?Language"); |
| 28 | } |
| 29 | |
| 30 | #[test] |
| 31 | fn test_apply_substitution_union() { |
nothing calls this directly
no test coverage detected