()
| 806 | |
| 807 | #[test] |
| 808 | fn test_add_files_touched() { |
| 809 | let mut s = make_session(); |
| 810 | s.add_files_touched(&["a.rs".to_string(), "b.rs".to_string()]); |
| 811 | assert_eq!(s.files_touched, vec!["a.rs", "b.rs"]); |
| 812 | assert_eq!(s.files_touched_count(), 2); |
| 813 | } |
| 814 | |
| 815 | #[test] |
| 816 | fn test_add_files_touched_dedup() { |
nothing calls this directly
no test coverage detected