From c57e5475f7f515c3f5bcc9642e707cef090370c0 Mon Sep 17 00:00:00 2001 From: Mika Date: Wed, 10 Dec 2025 14:36:41 +0000 Subject: [PATCH] Add trace_export_script/tests/data/test_trace_samples.json --- .../tests/data/test_trace_samples.json | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 trace_export_script/tests/data/test_trace_samples.json diff --git a/trace_export_script/tests/data/test_trace_samples.json b/trace_export_script/tests/data/test_trace_samples.json new file mode 100644 index 0000000..b7c929c --- /dev/null +++ b/trace_export_script/tests/data/test_trace_samples.json @@ -0,0 +1,27 @@ +[ + { + "timestamp": 0.0, + "value": 1.23, + "source": "sensor_A" + }, + { + "timestamp": 0.5, + "value": 1.45, + "source": "sensor_A" + }, + { + "timestamp": 1.0, + "value": 1.67, + "source": "sensor_B" + }, + { + "timestamp": 1.5, + "value": 1.89, + "source": "sensor_B" + }, + { + "timestamp": 2.0, + "value": 2.05, + "source": "sensor_C" + } +] \ No newline at end of file