MCPcopy
hub / github.com/stretchr/testify / FailfastSuite

Struct FailfastSuite

suite/suite_test.go:588–591  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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
588type FailfastSuite struct {
589 Suite
590 callOrder []string
591}
592
593func (s *FailfastSuite) call(method string) {
594 s.callOrder = append(s.callOrder, method)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected