ITestCase represents interface for testcases, includes TestCase and TestCasePath.
| 17 | // ITestCase represents interface for testcases, |
| 18 | // includes TestCase and TestCasePath. |
| 19 | type ITestCase interface { |
| 20 | GetPath() string |
| 21 | ToTestCase() (*TestCase, error) |
| 22 | } |
| 23 | |
| 24 | // TestCase is a container for one testcase, which is used for testcase runner. |
| 25 | // TestCase implements ITestCase interface. |