(t *testing.T)
| 30 | ) |
| 31 | |
| 32 | func NewT(t *testing.T) T { |
| 33 | cfg := config.AppConfig{} |
| 34 | cfg.Default() |
| 35 | return &testContext{ |
| 36 | t, |
| 37 | cfg, |
| 38 | &sync.Mutex{}, |
| 39 | NewAuthUserStorage(), |
| 40 | 0, |
| 41 | 0, |
| 42 | nil, |
| 43 | nil, |
| 44 | nil, |
| 45 | nil, |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | type T interface { |
| 50 | // StartContainerSSH starts a ContainerSSH instance on a random port. If no authentication has been previously |
no test coverage detected