use crate::examples::harness::{test_example, TestConfig};
#[test]
fn misc_freerun() {
test_example(
"misc_freerun",
TestConfig::new_property("AG![lfp![X,gfp![Y, AX![X] || (value == 0 && AX![Y])]]]")
.with_arg("--strategy")
.with_arg("decay"),
r#"{"result":{"Ok":"False"},"stats":{"num_refinements":82,"num_generated_states":161,"num_final_states":8,"num_generated_transitions":161,"num_final_transitions":9,"inherent_panic_message":null}}"#,
);
}