All test info related to verify method Attributes: method_name: Name of the method to be verified. test_cases: All test cases for verifying the method.
| 109 | |
| 110 | @dataclass |
| 111 | class MethodTestSuite: |
| 112 | """All test info related to verify method |
| 113 | |
| 114 | Attributes: |
| 115 | method_name: Name of the method to be verified. |
| 116 | test_cases: All test cases for verifying the method. |
| 117 | """ |
| 118 | |
| 119 | method_name: str |
| 120 | test_cases: Sequence[MethodTestCase] |
no outgoing calls