()
| 283 | |
| 284 | #[test] |
| 285 | fn empty_result() { |
| 286 | let batch = AlgoResultBatch::new(GraphAlgorithm::PageRank); |
| 287 | assert!(batch.is_empty()); |
| 288 | let rb = batch.to_record_batch().unwrap(); |
| 289 | assert_eq!(rb.num_rows(), 0); |
| 290 | } |
| 291 | |
| 292 | #[test] |
| 293 | fn result_to_json() { |
nothing calls this directly
no test coverage detected