liveplot 2.0.1

Realtime interactive plotting library using egui/eframe, with optional gRPC and Parquet export support.
1
2
3
4
5
6
7
8
use liveplot::panels::ExportPanel;

#[test]
fn export_menu_labels_include_icons() {
    assert_eq!(ExportPanel::SNAPSHOT_CSV_LABEL, "🖹 Snapshot as CSV");
    assert_eq!(ExportPanel::SAVE_STATE_LABEL, "📂 Save state...");
    assert_eq!(ExportPanel::LOAD_STATE_LABEL, "📂 Load state...");
}