(condition, msg)
| 67 | results = {"passed": 0, "failed": 0} |
| 68 | |
| 69 | def check(condition, msg): |
| 70 | if condition: |
| 71 | log_pass(msg) |
| 72 | results["passed"] += 1 |
| 73 | else: |
| 74 | log_fail(msg) |
| 75 | results["failed"] += 1 |
| 76 | return condition |
| 77 | |
| 78 | for provider in providers: |
| 79 | log_section(f"Testing with {provider.upper()}") |
no test coverage detected