Searched refs:optionsCaptor (Results 1 – 4 of 4) sorted by relevance
84 val optionsCaptor = argumentCaptor<ActivityOptions>() regex87 verify(taskView).startActivity(any(), any(), capture(optionsCaptor), any())89 assertThat(optionsCaptor.value.pendingIntentBackgroundActivityStartMode)91 assertThat(optionsCaptor.value.isPendingIntentBackgroundActivityLaunchAllowedByPermission)
113 val optionsCaptor = argumentCaptor<ActivityOptions>() regex119 capture(optionsCaptor),125 assertThat(optionsCaptor.value.taskAlwaysOnTop).isTrue()
770 final ArgumentCaptor<Bundle> optionsCaptor = ArgumentCaptor.forClass(Bundle.class);773 optionsCaptor.capture());774 final BroadcastOptions options = new BroadcastOptions(optionsCaptor.getValue());1276 final ArgumentCaptor<Bundle> optionsCaptor = ArgumentCaptor.forClass(Bundle.class);1278 isNull(), optionsCaptor.capture());1279 verifyTimeTickBroadcastOptions(optionsCaptor.getValue());1289 final ArgumentCaptor<Bundle> optionsCaptor = ArgumentCaptor.forClass(Bundle.class);1291 isNull(), optionsCaptor.capture());1292 verifyTimeTickBroadcastOptions(optionsCaptor.getValue());
1535 final ArgumentCaptor<SafeActivityOptions> optionsCaptor = in testStartTasksInTransaction() local1538 anyInt(), anyInt(), eq(2), optionsCaptor.capture()); in testStartTasksInTransaction()1539 assertTrue(optionsCaptor.getValue().getOriginalOptions().getTransientLaunch()); in testStartTasksInTransaction()