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 {
183
183
}
184
184
185
185
/// All the counters which have been created and not destroyed
186
- var counters : [ TestCounter ] {
186
+ public var counters : [ TestCounter ] {
187
187
let counters = self . lock. withLock {
188
188
self . _counters
189
189
}
@@ -220,7 +220,7 @@ extension TestMetrics {
220
220
}
221
221
222
222
/// All the meters which have been created and not destroyed
223
- var meters : [ TestMeter ] {
223
+ public var meters : [ TestMeter ] {
224
224
let meters = self . lock. withLock {
225
225
self . _meters
226
226
}
@@ -247,7 +247,7 @@ extension TestMetrics {
247
247
}
248
248
249
249
/// All the recorders which have been created and not destroyed
250
- var recorders : [ TestRecorder ] {
250
+ public var recorders : [ TestRecorder ] {
251
251
let recorders = self . lock. withLock {
252
252
self . _recorders
253
253
}
@@ -274,7 +274,7 @@ extension TestMetrics {
274
274
}
275
275
276
276
/// All the timers which have been created and not destroyed
277
- var timers : [ TestTimer ] {
277
+ public var timers : [ TestTimer ] {
278
278
let timers = self . lock. withLock {
279
279
self . _timers
280
280
}
You can’t perform that action at this time.
0 commit comments