NewBlipTesterClientRunner creates a BlipTestClientRunner type
(t *testing.T)
| 471 | |
| 472 | // NewBlipTesterClientRunner creates a BlipTestClientRunner type |
| 473 | func NewBlipTesterClientRunner(t *testing.T) *BlipTestClientRunner { |
| 474 | return &BlipTestClientRunner{ |
| 475 | t: t, |
| 476 | clients: make(map[uint32]*BlipTesterClient), |
| 477 | SkipSubtest: make(map[string]bool), |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | // SetSubprotocols forces all BlipTesterClient to run with specific subprotocols. Use BlipTestClientRunner.Run to run tests. |
| 482 | func (btcRunner *BlipTestClientRunner) SetSubprotocols(subprotocols []string) { |
no outgoing calls