| 12 | ) |
| 13 | |
| 14 | type TestExecutor struct { |
| 15 | chaosClient *chaos_mesh.ChaosClient |
| 16 | testName string |
| 17 | planSteps []types.PlanStep |
| 18 | faultSessions []*chaos_mesh.FaultSession |
| 19 | planCompleted bool |
| 20 | } |
| 21 | |
| 22 | func CreateTestExecutor(chaosClient *chaos_mesh.ChaosClient, test types.SuiteTest) *TestExecutor { |
| 23 | return &TestExecutor{chaosClient: chaosClient, testName: test.TestName, planSteps: test.PlanSteps} |
nothing calls this directly
no outgoing calls
no test coverage detected