()
| 16 | } |
| 17 | |
| 18 | func newSuiteInformation() *SuiteInformation { |
| 19 | return &SuiteInformation{ |
| 20 | TestStats: make(map[string]*TestInformation), |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func (s *SuiteInformation) start(testName string) { |
| 25 | if s == nil { |
no outgoing calls
searching dependent graphs…