diff --git a/retry_mechanism/tests/data/sample_input.json b/retry_mechanism/tests/data/sample_input.json new file mode 100644 index 0000000..95c9d13 --- /dev/null +++ b/retry_mechanism/tests/data/sample_input.json @@ -0,0 +1,20 @@ +{ + "cases": [ + { + "description": "Positive Delta t should remain unchanged", + "dt": 0.045 + }, + { + "description": "Negative Delta t triggers retry", + "dt": -0.23 + }, + { + "description": "Zero Delta t edge case", + "dt": 0.0 + }, + { + "description": "Barely negative Delta t requiring minimal correction", + "dt": -1e-06 + } + ] +} \ No newline at end of file