()
| 536 | |
| 537 | #[test] |
| 538 | fn test_lis_empty() { |
| 539 | let matches: Vec<UniqueMatch> = vec![]; |
| 540 | let lis = longest_increasing_subsequence(&matches); |
| 541 | assert!(lis.is_empty()); |
| 542 | } |
| 543 | |
| 544 | #[test] |
| 545 | fn test_lis_single() { |
nothing calls this directly
no test coverage detected