MCPcopy Create free account
hub / github.com/F-Stack/f-stack / TestCaseVerifyError

Class TestCaseVerifyError

dpdk/dts/framework/exception.py:138–150  ·  view source on GitHub ↗

Used in test cases to verify the expected behavior.

Source from the content-addressed store, hash-verified

136
137
138class 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
153class BlockingTestSuiteError(DTSError):

Callers 1

Calls

no outgoing calls

Tested by 1