()
| 1022 | |
| 1023 | #[test] |
| 1024 | fn test_options_flush_after_write() { |
| 1025 | let opts = FileOutputOptions::new().flush_after_write(false); |
| 1026 | |
| 1027 | assert!(!opts.flush_after_write); |
| 1028 | } |
| 1029 | |
| 1030 | #[test] |
| 1031 | fn test_options_flush_after_write_true() { |
nothing calls this directly
no test coverage detected