We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a suite of tests in JSON / DSL with fuzzing, etc.
The text was updated successfully, but these errors were encountered:
The test JSON should take in a sim file and assert stuff for various types of failures. For example:
{ "sim": "config/simulations/testsim.json", "tests": [ { "name": "normal", "failures": [], "assertions": [ "max_height > 500", "landing_speed < 10", ] }, { "name": "altimeter_fail", "failures": [ "altimeter_zero" ], "assertions": [ "max_height > 500", "landing_speed < 10", ] } ] }
Though feel free to make any changes necessary. Also probably figure out an actually workable way to do assertions and stuff.
Sorry, something went wrong.
Assertions are done
leoadberg
No branches or pull requests
Add a suite of tests in JSON / DSL with fuzzing, etc.
The text was updated successfully, but these errors were encountered: