feat: log rendezvous when running tests

This commit is contained in:
debugtalk
2021-12-08 11:29:57 +08:00
parent f7fc28bc53
commit 83ab5b7038
4 changed files with 44 additions and 4 deletions

View File

@@ -120,6 +120,10 @@ func (tc *TCase) ToTestCase() (*TestCase, error) {
testCase.TestSteps = append(testCase.TestSteps, &stepTransaction{
step: step,
})
} else if step.Rendezvous != nil {
testCase.TestSteps = append(testCase.TestSteps, &stepRendezvous{
step: step,
})
} else {
log.Warn().Interface("step", step).Msg("[convertTestCase] unexpected step")
}