Tung97 Hl
01/12/2024, 10:36 AM@RunWith(AndroidJUnit4::class)
@LargeTest
class BaselineProfileGenerator {
@get:Rule
val rule = BaselineProfileRule()
@Test flow1() = rule.collect() /../
@Test flow2() = rule.collect() /../
/../
}
Question: If I have many flows to collect baseline profiles like the above, will the output baseline profiles be merged ? If not, how can I achieve it?Chrimaeon
01/12/2024, 11:02 AMTung97 Hl
01/12/2024, 11:27 AM