()
| 93 | } |
| 94 | |
| 95 | func (f *fakeReporter) getLogs() []*agentproto.ReportBoundaryLogsRequest { |
| 96 | f.mu.Lock() |
| 97 | defer f.mu.Unlock() |
| 98 | return append([]*agentproto.ReportBoundaryLogsRequest{}, f.logs...) |
| 99 | } |
| 100 | |
| 101 | func TestServer_StartAndClose(t *testing.T) { |
| 102 | t.Parallel() |
no test coverage detected