(sessionID string)
| 411 | } |
| 412 | |
| 413 | func newTestCanvasSession(sessionID string) *Session { |
| 414 | session := &Session{ |
| 415 | SessionID: sessionID, |
| 416 | clientSessionAPIs: &rpc.ClientSessionAPIHandlers{}, |
| 417 | } |
| 418 | session.clientSessionAPIs.Canvas = newCanvasClientSessionAdapter(session) |
| 419 | return session |
| 420 | } |
| 421 | |
| 422 | func strPtr(s string) *string { return &s } |
no test coverage detected
searching dependent graphs…