Home
last modified time | relevance | path

Searched refs:mBundleCaptor (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountManagerServiceTest.java575 Bundle result = mBundleCaptor.getValue(); in testStartAddAccountSessionSuccessWithoutPasswordForwarding()
607 Bundle result = mBundleCaptor.getValue(); in testStartAddAccountSessionSuccessWithPasswordForwarding()
677 Bundle result = mBundleCaptor.getValue(); in testStartAddAccountSessionReturnWithValidIntent()
760 Bundle result = mBundleCaptor.getValue(); in testStartUpdateCredentialsSessionSuccessWithoutPasswordForwarding()
791 Bundle result = mBundleCaptor.getValue(); in testStartUpdateCredentialsSessionSuccessWithPasswordForwarding()
861 Bundle result = mBundleCaptor.getValue(); in testStartUpdateCredentialsSessionReturnWithValidIntent()
1086 Bundle result = mBundleCaptor.getValue(); in testFinishSessionAsUserSuccess()
1159 Bundle result = mBundleCaptor.getValue(); in testFinishSessionAsUserReturnWithValidIntent()
1260 Bundle result = mBundleCaptor.getValue(); in testIsCredentialsUpdatedSuggestedSuccess()
1338 Bundle result = mBundleCaptor.getValue(); in testHasFeaturesSuccess()
[all …]
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/telemetry/publisher/
H A DStatsPublisherTest.java270 @Captor private ArgumentCaptor<PersistableBundle> mBundleCaptor; field in StatsPublisherTest
453 verify(subscriber1).push(mBundleCaptor.capture(), anyBoolean()); in testPullStatsdReport_correctlyPushesBundlesToSubscribers()
454 PersistableBundle bundle1 = mBundleCaptor.getValue(); in testPullStatsdReport_correctlyPushesBundlesToSubscribers()
461 verify(subscriber2).push(mBundleCaptor.capture(), anyBoolean()); in testPullStatsdReport_correctlyPushesBundlesToSubscribers()
462 PersistableBundle bundle2 = mBundleCaptor.getValue(); in testPullStatsdReport_correctlyPushesBundlesToSubscribers()
H A DVehiclePropertyPublisherTest.java99 private ArgumentCaptor<PersistableBundle> mBundleCaptor; field in VehiclePropertyPublisherTest
202 verify(mMockDataSubscriber).push(mBundleCaptor.capture()); in testOnNewCarPropertyEvent_pushesValueToDataSubscriber()