| 76 | ) |
| 77 | |
| 78 | type fakeOpenCensusExporter struct { |
| 79 | // The map of the observed View name and type |
| 80 | SeenViews map[string]string |
| 81 | // Number of spans |
| 82 | SeenSpans int |
| 83 | |
| 84 | idCh *testutils.Channel |
| 85 | |
| 86 | t *testing.T |
| 87 | mu sync.RWMutex |
| 88 | } |
| 89 | |
| 90 | func (fe *fakeOpenCensusExporter) ExportView(vd *view.Data) { |
| 91 | fe.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected