(uid types.Uid)
| 15 | ) |
| 16 | |
| 17 | func test_makeSession(uid types.Uid) *Session { |
| 18 | return &Session{ |
| 19 | send: make(chan any, 10), |
| 20 | uid: uid, |
| 21 | authLvl: auth.LevelAuth, |
| 22 | inflightReqs: newBoundedWaitGroup(1), |
| 23 | ver: 22, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func TestDispatchHello(t *testing.T) { |
| 28 | s := &Session{ |
no test coverage detected
searching dependent graphs…