use super::*; from_examples!(DMN_2_0005); #[bench] fn _0001(b: &mut Bencher) { let ctx = context(r#"{Age: 18,RiskCategory: "Medium",isAffordable: true}"#); let invocable_name = "Approval Status"; assert_decision(&MODEL_EVALUATOR, &MODEL_NAMESPACE, invocable_name, &ctx, r#""Approved""#); b.iter(|| MODEL_EVALUATOR.evaluate_invocable(&MODEL_NAMESPACE, invocable_name, &ctx)); } #[bench] fn _0002(b: &mut Bencher) { let ctx = context(r#"{Age: 17,RiskCategory: "Medium",isAffordable: true}"#); let invocable_name = "Approval Status"; assert_decision(&MODEL_EVALUATOR, &MODEL_NAMESPACE, invocable_name, &ctx, r#""Declined""#); b.iter(|| MODEL_EVALUATOR.evaluate_invocable(&MODEL_NAMESPACE, invocable_name, &ctx)); } #[bench] fn _0003(b: &mut Bencher) { let ctx = context(r#"{Age: 18,RiskCategory: "High",isAffordable: true}"#); let invocable_name = "Approval Status"; assert_decision(&MODEL_EVALUATOR, &MODEL_NAMESPACE, invocable_name, &ctx, r#""Declined""#); b.iter(|| MODEL_EVALUATOR.evaluate_invocable(&MODEL_NAMESPACE, invocable_name, &ctx)); }