Framework Mode - Decision table testing
Folder Structure for Decision Table Testing Framework
decision-table-testing/ ├── decision_tables/ │ ├── login_decision_table.csv │ ├── payment_decision_table.csv │ └── user_registration_decision_table.csv ├── tests/ │ ├── test_login.py │ ├── test_payment.py │ └── test_user_registration.py ├── utils/ │ ├── decision_table_parser.py │ └── test_executor.py ├── config/ │ └── config.yaml ├── reports/ │ └── latest_report.html └── README.md