Standardized data class for each test case for BastTest
| 18 | |
| 19 | @dataclass |
| 20 | class TestCase: |
| 21 | """Standardized data class for each test case for BastTest""" |
| 22 | |
| 23 | test_name: str = "" |
| 24 | user_context: str = "" |
| 25 | expected_outcome: str = "" |
| 26 | |
| 27 | |
| 28 | class BaseTest(ABC): |
no outgoing calls
no test coverage detected