TestCase is a container for one testcase, which is used for testcase runner. TestCase implements ITestCase interface.
| 24 | // TestCase is a container for one testcase, which is used for testcase runner. |
| 25 | // TestCase implements ITestCase interface. |
| 26 | type TestCase struct { |
| 27 | Config *TConfig |
| 28 | TestSteps []IStep |
| 29 | } |
| 30 | |
| 31 | func (tc *TestCase) GetPath() string { |
| 32 | return tc.Config.Path |
nothing calls this directly
no outgoing calls
no test coverage detected