Add retry_mechanism/tests/data/sample_input.json
This commit is contained in:
parent
fb6521264f
commit
23ed15f58c
1 changed files with 20 additions and 0 deletions
20
retry_mechanism/tests/data/sample_input.json
Normal file
20
retry_mechanism/tests/data/sample_input.json
Normal file
|
|
@ -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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue