()
| 543 | |
| 544 | #[test] |
| 545 | fn test_lis_single() { |
| 546 | let matches = vec![UniqueMatch { |
| 547 | old_idx: 5, |
| 548 | new_idx: 3, |
| 549 | }]; |
| 550 | let lis = longest_increasing_subsequence(&matches); |
| 551 | assert_eq!(lis.len(), 1); |
| 552 | } |
| 553 | |
| 554 | #[test] |
| 555 | fn test_lis_all_increasing() { |
nothing calls this directly
no test coverage detected