blazegraph-io-core 0.2.2

Core library for semantic document graph processing — parse PDFs into structured, queryable graphs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

#[test]
fn analysis_builder_compiles_and_finalizes_to_defaults() {
    let builder = AnalysisBuilder::new();
    let analysis = builder.finalize();
    // Default outputs round-trip through serde without panic.
    let json = serde_json::to_string(&analysis).expect("serialize");
    let parsed: super::DocumentAnalysis = serde_json::from_str(&json).expect("deserialize");
    let _ = parsed;
}