| 53 | } |
| 54 | |
| 55 | type panickingSuite struct { |
| 56 | Suite |
| 57 | panicInSetupSuite bool |
| 58 | panicInSetupTest bool |
| 59 | panicInBeforeTest bool |
| 60 | panicInTest bool |
| 61 | panicInAfterTest bool |
| 62 | panicInTearDownTest bool |
| 63 | panicInTearDownSuite bool |
| 64 | } |
| 65 | |
| 66 | func (s *panickingSuite) SetupSuite() { |
| 67 | if s.panicInSetupSuite { |
nothing calls this directly
no outgoing calls
no test coverage detected