@@ -170,7 +170,7 @@ public void testStartCollectingGaugesStartsCollectingMetricsInForegroundState()
170
170
}
171
171
172
172
@ Test
173
- @ Ignore // b/394127311
173
+ @ Ignore // TODO( b/394127311): Fix
174
174
public void
175
175
stopCollectingCPUMetric_invalidCPUCaptureFrequency_OtherMetricsWithValidFrequencyInBackground () {
176
176
// PASS 1: Test with 0
@@ -201,7 +201,7 @@ public void testStartCollectingGaugesStartsCollectingMetricsInForegroundState()
201
201
}
202
202
203
203
@ Test
204
- @ Ignore // b/394127311
204
+ @ Ignore // TODO( b/394127311): Fix
205
205
public void
206
206
startCollectingGaugesOnBackground_invalidMemoryCaptureMs_onlyDisableMemoryCollection () {
207
207
// PASS 1: Test with 0
@@ -232,7 +232,7 @@ public void testStartCollectingGaugesStartsCollectingMetricsInForegroundState()
232
232
}
233
233
234
234
@ Test
235
- @ Ignore // b/394127311
235
+ @ Ignore // TODO( b/394127311): Fix
236
236
public void stopCollectingCPUMetric_invalidCPUCaptureFrequency_OtherMetricsWithValidFrequency () {
237
237
// PASS 1: Test with 0
238
238
doReturn (0L ).when (mockConfigResolver ).getSessionsCpuCaptureFrequencyForegroundMs ();
@@ -262,7 +262,7 @@ public void stopCollectingCPUMetric_invalidCPUCaptureFrequency_OtherMetricsWithV
262
262
}
263
263
264
264
@ Test
265
- @ Ignore // b/394127311
265
+ @ Ignore // TODO( b/394127311): Fix
266
266
public void
267
267
startCollectingGaugesOnForeground_invalidMemoryCaptureMs_onlyDisableMemoryCollection () {
268
268
// PASS 1: Test with 0
@@ -300,7 +300,7 @@ public void testStartCollectingGaugesDoesNotStartAJobToConsumeMetricsWithUnknown
300
300
}
301
301
302
302
@ Test
303
- @ Ignore // b/394127311
303
+ @ Ignore // TODO( b/394127311): Fix
304
304
public void stopCollectingCPUMetrics_invalidCPUCaptureFrequency_appInForegrounf () {
305
305
// PASS 1: Test with 0
306
306
doReturn (0L ).when (mockConfigResolver ).getSessionsCpuCaptureFrequencyForegroundMs ();
@@ -318,7 +318,7 @@ public void stopCollectingCPUMetrics_invalidCPUCaptureFrequency_appInForegrounf(
318
318
}
319
319
320
320
@ Test
321
- @ Ignore // b/394127311
321
+ @ Ignore // TODO( b/394127311): Fix
322
322
public void stopCollectingGauges_invalidMemoryCollectionFrequency_appInForeground () {
323
323
// PASS 1: Test with 0
324
324
doReturn (0L ).when (mockConfigResolver ).getSessionsMemoryCaptureFrequencyForegroundMs ();
@@ -355,7 +355,7 @@ public void stopCollectingGauges_invalidGaugeCollectionFrequency_appInForeground
355
355
}
356
356
357
357
@ Test
358
- @ Ignore // b/394127311
358
+ @ Ignore // TODO( b/394127311): Fix
359
359
public void startCollectingGauges_validGaugeCollectionFrequency_appInForeground () {
360
360
doReturn (25L ).when (mockConfigResolver ).getSessionsCpuCaptureFrequencyForegroundMs ();
361
361
doReturn (15L ).when (mockConfigResolver ).getSessionsMemoryCaptureFrequencyForegroundMs ();
@@ -369,7 +369,7 @@ public void startCollectingGauges_validGaugeCollectionFrequency_appInForeground(
369
369
}
370
370
371
371
@ Test
372
- @ Ignore // b/394127311
372
+ @ Ignore // TODO( b/394127311): Fix
373
373
public void testStartCollectingGaugesStartsAJobToConsumeTheGeneratedMetrics () {
374
374
PerfSession fakeSession = createTestSession (1 );
375
375
testGaugeManager .startCollectingGauges (fakeSession );
@@ -404,7 +404,7 @@ public void testStartCollectingGaugesStartsAJobToConsumeTheGeneratedMetrics() {
404
404
}
405
405
406
406
@ Test
407
- @ Ignore // b/394127311
407
+ @ Ignore // TODO( b/394127311): Fix
408
408
public void testStopCollectingGaugesStopsCollectingAllGaugeMetrics () {
409
409
PerfSession fakeSession = createTestSession (1 );
410
410
@@ -419,7 +419,7 @@ public void testStopCollectingGaugesStopsCollectingAllGaugeMetrics() {
419
419
}
420
420
421
421
@ Test
422
- @ Ignore // b/394127311
422
+ @ Ignore // TODO( b/394127311): Fix
423
423
public void testStopCollectingGaugesCreatesOneLastJobToConsumeAnyPendingMetrics () {
424
424
PerfSession fakeSession = createTestSession (1 );
425
425
testGaugeManager .startCollectingGauges (fakeSession );
@@ -448,7 +448,7 @@ public void testStopCollectingGaugesCreatesOneLastJobToConsumeAnyPendingMetrics(
448
448
}
449
449
450
450
@ Test
451
- @ Ignore // b/394127311
451
+ @ Ignore // TODO( b/394127311): Fix
452
452
public void testGaugeManagerClearsTheQueueEachRun () {
453
453
PerfSession fakeSession = createTestSession (1 );
454
454
@@ -481,7 +481,7 @@ public void testGaugeManagerClearsTheQueueEachRun() {
481
481
}
482
482
483
483
@ Test
484
- @ Ignore // b/394127311
484
+ @ Ignore // TODO( b/394127311): Fix
485
485
public void testStartingGaugeManagerWithNewSessionIdButSameAppState () {
486
486
PerfSession fakeSession1 = createTestSession (1 );
487
487
@@ -540,7 +540,7 @@ public void testStartingGaugeManagerWithNewSessionIdButSameAppState() {
540
540
}
541
541
542
542
@ Test
543
- @ Ignore // b/394127311
543
+ @ Ignore // TODO( b/394127311): Fix
544
544
public void testStartGaugeManagerWithSameSessionIdButDifferentAppState () {
545
545
PerfSession fakeSession = createTestSession (1 );
546
546
@@ -597,7 +597,7 @@ public void testStartGaugeManagerWithSameSessionIdButDifferentAppState() {
597
597
}
598
598
599
599
@ Test
600
- @ Ignore // b/394127311
600
+ @ Ignore // TODO( b/394127311): Fix
601
601
public void testStartGaugeManagerWithNewSessionIdAndNewAppState () {
602
602
PerfSession fakeSession1 = createTestSession (1 );
603
603
0 commit comments