Used in test cases to verify the expected behavior.
| 136 | |
| 137 | |
| 138 | class TestCaseVerifyError(DTSError): |
| 139 | """ |
| 140 | Used in test cases to verify the expected behavior. |
| 141 | """ |
| 142 | |
| 143 | value: str |
| 144 | severity: ClassVar[ErrorSeverity] = ErrorSeverity.TESTCASE_VERIFY_ERR |
| 145 | |
| 146 | def __init__(self, value: str): |
| 147 | self.value = value |
| 148 | |
| 149 | def __str__(self) -> str: |
| 150 | return repr(self.value) |
| 151 | |
| 152 | |
| 153 | class BlockingTestSuiteError(DTSError): |
no outgoing calls