FailfastSuite will test the behavior when running with the failfast flag It logs calls in the callOrder slice which we then use to assert the correct calls were made
| 586 | // FailfastSuite will test the behavior when running with the failfast flag |
| 587 | // It logs calls in the callOrder slice which we then use to assert the correct calls were made |
| 588 | type FailfastSuite struct { |
| 589 | Suite |
| 590 | callOrder []string |
| 591 | } |
| 592 | |
| 593 | func (s *FailfastSuite) call(method string) { |
| 594 | s.callOrder = append(s.callOrder, method) |
nothing calls this directly
no outgoing calls
no test coverage detected