Searched refs:eventBundle (Results 1 – 2 of 2) sorted by relevance
84 Bundle eventBundle = bundleCaptor.getValue(); in monitorEvent_packageAndExtrasAreNull_fillsBundleCorrectly() local85 assertThat(eventBundle.size()).isEqualTo(2); in monitorEvent_packageAndExtrasAreNull_fillsBundleCorrectly()86 assertThat(eventBundle.getInt(EXTRA_LOG_EVENT_ID)).isEqualTo(1); in monitorEvent_packageAndExtrasAreNull_fillsBundleCorrectly()87 assertThat(eventBundle.getInt(EXTRA_LOG_EVENT_CATEGORY)).isEqualTo(2); in monitorEvent_packageAndExtrasAreNull_fillsBundleCorrectly()105 Bundle eventBundle = bundleCaptor.getValue(); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly() local106 assertThat(eventBundle.size()).isEqualTo(7); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly()107 assertThat(eventBundle.getInt(EXTRA_LOG_EVENT_ID)).isEqualTo(1); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly()108 assertThat(eventBundle.getInt(EXTRA_LOG_EVENT_CATEGORY)).isEqualTo(2); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly()109 assertThat(eventBundle.getString(EXTRA_LOG_EVENT_PACKAGE_NAME)).isEqualTo("test.package"); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly()110 assertThat(eventBundle.getInt(EXTRA_LOG_EVENT_PACKAGE_VERSION)).isEqualTo(3); in monitorEvent_packageAndExtrasAreNotNull_fillsBundleCorrectly()[all …]
622 Bundle eventBundle = event.toBundle(); in postInterprocess() local625 intent.putExtra(EXTRA_INTERPROCESS_EVENT_BUNDLE, eventBundle); in postInterprocess()640 Bundle eventBundle = intent.getBundleExtra(EXTRA_INTERPROCESS_EVENT_BUNDLE); in onReceive() local644 send((Event) ctor.newInstance(eventBundle)); in onReceive()