tc03_branch_no_match.json 636 B

12345678910111213141516171819202122
  1. {
  2. "version": "3.15",
  3. "name": "TC03: Branch No Match Continues to Next",
  4. "registry": {
  5. "params": ["score(INT)"],
  6. "vars": ["$grade(STRING)"]
  7. },
  8. "steps": [
  9. {
  10. "id": "Branch_grade",
  11. "next": "Set_default",
  12. "cases": [
  13. ["=score >= 90", "Set_A"],
  14. ["=score >= 70", "Set_B"]
  15. ]
  16. },
  17. { "id": "Set_A", "target": "$grade", "value": "A", "next": "Stop_end" },
  18. { "id": "Set_B", "target": "$grade", "value": "B", "next": "Stop_end" },
  19. { "id": "Set_default", "target": "$grade", "value": "no_match", "next": "Stop_end" },
  20. { "id": "Stop_end" }
  21. ]
  22. }