File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ extension TestMetrics {
183183 }
184184
185185 /// All the counters which have been created and not destroyed
186- var counters : [ TestCounter ] {
186+ public var counters : [ TestCounter ] {
187187 let counters = self . lock. withLock {
188188 self . _counters
189189 }
@@ -220,7 +220,7 @@ extension TestMetrics {
220220 }
221221
222222 /// All the meters which have been created and not destroyed
223- var meters : [ TestMeter ] {
223+ public var meters : [ TestMeter ] {
224224 let meters = self . lock. withLock {
225225 self . _meters
226226 }
@@ -247,7 +247,7 @@ extension TestMetrics {
247247 }
248248
249249 /// All the recorders which have been created and not destroyed
250- var recorders : [ TestRecorder ] {
250+ public var recorders : [ TestRecorder ] {
251251 let recorders = self . lock. withLock {
252252 self . _recorders
253253 }
@@ -274,7 +274,7 @@ extension TestMetrics {
274274 }
275275
276276 /// All the timers which have been created and not destroyed
277- var timers : [ TestTimer ] {
277+ public var timers : [ TestTimer ] {
278278 let timers = self . lock. withLock {
279279 self . _timers
280280 }
You can’t perform that action at this time.
0 commit comments