()
| 324 | |
| 325 | #[test_case] |
| 326 | fn OsStr_to_os_string() { |
| 327 | let os_str = OsStr::new("foo"); |
| 328 | let os_string = os_str.to_os_string(); |
| 329 | assert_eq!(os_string, OsString::from("foo")); |
| 330 | } |
| 331 | |
| 332 | #[test_case] |
| 333 | fn OsString_with_capacity() { |
nothing calls this directly
no test coverage detected