(method string)
| 484 | } |
| 485 | |
| 486 | func (s *CallOrderSuite) call(method string) { |
| 487 | time.Sleep(time.Duration(rand.Intn(300)) * time.Millisecond) |
| 488 | s.callOrder = append(s.callOrder, method) |
| 489 | } |
| 490 | |
| 491 | func TestSuiteCallOrder(t *testing.T) { |
| 492 | Run(t, new(CallOrderSuite)) |
no outgoing calls
no test coverage detected