()
| 416 | |
| 417 | #[test] |
| 418 | fn test_rank() -> Result<()> { |
| 419 | let r = Rank::basic(); |
| 420 | test_without_rank(&r, vec![1; 8])?; |
| 421 | test_with_rank(&r, vec![1, 1, 3, 4, 4, 4, 7, 8])?; |
| 422 | Ok(()) |
| 423 | } |
| 424 | |
| 425 | #[test] |
| 426 | fn test_dense_rank() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…