Home
last modified time | relevance | path

Searched refs:AD_SELECTION_ID (Results 1 – 25 of 25) sorted by relevance

/packages/modules/AdServices/adservices/tests/cts/src/android/adservices/cts/
DPersistAdSelectionResultRequestTest.java32 private static final long AD_SELECTION_ID = 123456789L; field in PersistAdSelectionResultRequestTest
44 .setAdSelectionId(AD_SELECTION_ID) in testPersistAdSelectionResultRequest_validInput_successWithDeprecatedField()
49 assertThat(request.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testPersistAdSelectionResultRequest_validInput_successWithDeprecatedField()
50 assertThat(request.getAdSelectionDataId()).isEqualTo(AD_SELECTION_ID); in testPersistAdSelectionResultRequest_validInput_successWithDeprecatedField()
59 .setAdSelectionDataId(AD_SELECTION_ID) in testPersistAdSelectionResultRequest_validInput_successWithUpdatedField()
64 assertThat(request.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testPersistAdSelectionResultRequest_validInput_successWithUpdatedField()
65 assertThat(request.getAdSelectionDataId()).isEqualTo(AD_SELECTION_ID); in testPersistAdSelectionResultRequest_validInput_successWithUpdatedField()
75 .setAdSelectionId(AD_SELECTION_ID) in testPersistAdSelectionResultRequest_validInput_valueOfIdGettersIsSameAfterCallingBothSetters()
76 .setAdSelectionDataId(AD_SELECTION_ID + 1) in testPersistAdSelectionResultRequest_validInput_valueOfIdGettersIsSameAfterCallingBothSetters()
81 assertThat(request.getAdSelectionId()).isEqualTo(AD_SELECTION_ID + 1); in testPersistAdSelectionResultRequest_validInput_valueOfIdGettersIsSameAfterCallingBothSetters()
[all …]
DReportEventRequestTest.java39 private static final long AD_SELECTION_ID = 1234L; field in ReportEventRequestTest
59 AD_SELECTION_ID, INTERACTION_KEY, mInteractionData, DESTINATIONS) in testBuildReportEventRequestSuccess_viewInputEvent()
62 assertEquals(AD_SELECTION_ID, request.getAdSelectionId()); in testBuildReportEventRequestSuccess_viewInputEvent()
73 AD_SELECTION_ID, INTERACTION_KEY, mInteractionData, DESTINATIONS) in testBuildReportEventRequestSuccess_clickInputEvent()
77 assertEquals(AD_SELECTION_ID, request.getAdSelectionId()); in testBuildReportEventRequestSuccess_clickInputEvent()
97 long otherAdSelectionId = AD_SELECTION_ID + 1; in testBuildReportEventRequestSuccess_callAllSetters()
103 AD_SELECTION_ID, INTERACTION_KEY, mInteractionData, DESTINATIONS) in testBuildReportEventRequestSuccess_callAllSetters()
124 AD_SELECTION_ID, null, mInteractionData, DESTINATIONS) in testFailsToBuildWithUnsetInteractionKey()
135 AD_SELECTION_ID, INTERACTION_KEY, null, DESTINATIONS) in testFailsToBuildWithUnsetInteractionData()
146 AD_SELECTION_ID, INTERACTION_KEY, mInteractionData, 0) in testFailsToBuildWithUnsetDestinations()
[all …]
DGetAdSelectionDataOutcomeTest.java29 private static final long AD_SELECTION_ID = 123456789L; field in GetAdSelectionDataOutcomeTest
39 .setAdSelectionId(AD_SELECTION_ID) in testGetAdSelectionDataRequest_validInput_success()
43 assertThat(request.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testGetAdSelectionDataRequest_validInput_success()
44 assertThat(request.getAdSelectionDataId()).isEqualTo(AD_SELECTION_ID); in testGetAdSelectionDataRequest_validInput_success()
54 .setAdSelectionId(AD_SELECTION_ID) in testMutabilityForAdSelectionData()
DTestAdSelectionManagerTest.java84 private static final long AD_SELECTION_ID = 1; field in TestAdSelectionManagerTest
172 new ReportImpressionRequest(AD_SELECTION_ID, AD_SELECTION_CONFIG); in assertInvalidAdSelectionIdFailsImpressionReporting()
/packages/modules/AdServices/adservices/tests/unittest/framework/src/android/adservices/adselection/
DPersistAdSelectionResultInputTest.java41 private static final long AD_SELECTION_ID = 12345; field in PersistAdSelectionResultInputTest
47 .setAdSelectionId(AD_SELECTION_ID) in testBuildPersistAdSelectionResultInput()
53 expect.that(persistAdSelectionResultInput.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testBuildPersistAdSelectionResultInput()
65 .setAdSelectionId(AD_SELECTION_ID) in testParcelPersistAdSelectionResultInput()
77 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testParcelPersistAdSelectionResultInput()
87 .setAdSelectionId(AD_SELECTION_ID) in testParcelPersistAdSelectionResultInputWithNullValues()
99 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testParcelPersistAdSelectionResultInputWithNullValues()
122 .setAdSelectionId(AD_SELECTION_ID) in testPersistAdSelectionResultInputWithSameValuesAreEqual()
130 .setAdSelectionId(AD_SELECTION_ID) in testPersistAdSelectionResultInputWithSameValuesAreEqual()
144 .setAdSelectionId(AD_SELECTION_ID) in testPersistAdSelectionResultInputWithDifferentValuesAreNotEqual()
[all …]
DReportInteractionInputTest.java39 private static final long AD_SELECTION_ID = 1234L; field in ReportInteractionInputTest
60 .setAdSelectionId(AD_SELECTION_ID) in testWriteToParcel_nonNullOptionalParameters()
76 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testWriteToParcel_nonNullOptionalParameters()
91 .setAdSelectionId(AD_SELECTION_ID) in testWriteToParcel_nullInputEvent()
107 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testWriteToParcel_nullInputEvent()
121 .setAdSelectionId(AD_SELECTION_ID) in testWriteToParcel_nullAdId()
137 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testWriteToParcel_nullAdId()
152 .setAdSelectionId(AD_SELECTION_ID) in testWriteToParcel_nullCallerSdkName()
168 expect.that(fromParcel.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testWriteToParcel_nullCallerSdkName()
198 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildWithNullInteractionKey()
[all …]
DAdSelectionManagerTest.java70 private static final long AD_SELECTION_ID = 1234L; field in AdSelectionManagerTest
88 AD_SELECTION_ID, EVENT_KEY, mEventData, REPORTING_DESTINATIONS) in setup()
122 expect.that(input.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testAdSelectionManager_reportEvent_adIdEnabled()
148 expect.that(input.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testAdSelectionManager_reportEvent_adIdZeroOut()
174 expect.that(input.getAdSelectionId()).isEqualTo(AD_SELECTION_ID); in testAdSelectionManager_reportEvent_adIdDisabled()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/
DPersistAdSelectionResultRunnerTest.java356 private static final long AD_SELECTION_ID = 12345L; field in PersistAdSelectionResultRunnerTest
365 getAdSelectionResultBidAndUri(AD_SELECTION_ID, BID, WINNER_AD_RENDER_URI);
533 .decryptBytes(CIPHER_TEXT_BYTES, AD_SELECTION_ID); in testRunner_persistRemarketingResult_success()
540 AD_SELECTION_ID, INITIALIZATION_DATA); in testRunner_persistRemarketingResult_success()
545 .setAdSelectionId(AD_SELECTION_ID) in testRunner_persistRemarketingResult_success()
556 AD_SELECTION_ID, callback.mPersistAdSelectionResultResponse.getAdSelectionId()); in testRunner_persistRemarketingResult_success()
558 .decryptBytes(CIPHER_TEXT_BYTES, AD_SELECTION_ID); in testRunner_persistRemarketingResult_success()
561 AD_SELECTION_ID, in testRunner_persistRemarketingResult_success()
566 .persistReportingData(AD_SELECTION_ID, REPORTING_DATA); in testRunner_persistRemarketingResult_success()
569 AD_SELECTION_ID, in testRunner_persistRemarketingResult_success()
[all …]
DReportEventImplTest.java127 private static final long AD_SELECTION_ID = 1; field in ReportEventImplTest
231 .setAdSelectionId(AD_SELECTION_ID) in setup()
243 .setAdSelectionId(AD_SELECTION_ID) in setup()
253 .setAdSelectionId(AD_SELECTION_ID) in setup()
279 AD_SELECTION_ID, in testImplSuccessfullyReportsRegisteredInteractions()
286 AD_SELECTION_ID, in testImplSuccessfullyReportsRegisteredInteractions()
298 .setAdSelectionId(AD_SELECTION_ID) in testImplSuccessfullyReportsRegisteredInteractions()
343 AD_SELECTION_ID, in testImplDoesNotCrashAfterSellerReportingThrowsAnException()
350 AD_SELECTION_ID, in testImplDoesNotCrashAfterSellerReportingThrowsAnException()
380 .setAdSelectionId(AD_SELECTION_ID) in testImplDoesNotCrashAfterSellerReportingThrowsAnException()
[all …]
DReportingComputationHelperUnifiedTablesEnabledTest.java44 private static final int AD_SELECTION_ID = 1; field in ReportingComputationHelperUnifiedTablesEnabledTest
57 mReportingComputationHelperUnifiedTablesEnabled.doesAdSelectionIdExist(AD_SELECTION_ID); in testDoesAdSelectionIdExist()
58 verify(mAdSelectionEntryDaoMock).doesReportingComputationInfoExist(AD_SELECTION_ID); in testDoesAdSelectionIdExist()
65 .doesAdSelectionMatchingCallerPackageNameExist(AD_SELECTION_ID, TEST_PACKAGE_NAME); in testDoesAdSelectionMatchingCallerPackageNameExist()
68 AD_SELECTION_ID, TEST_PACKAGE_NAME); in testDoesAdSelectionMatchingCallerPackageNameExist()
75 when(mAdSelectionEntryDaoMock.getReportingComputationInfoById(AD_SELECTION_ID)) in testGetReportingComputation()
77 mReportingComputationHelperUnifiedTablesEnabled.getReportingComputation(AD_SELECTION_ID); in testGetReportingComputation()
78 verify(mAdSelectionEntryDaoMock).getReportingComputationInfoById(AD_SELECTION_ID); in testGetReportingComputation()
DReportingComputationHelperUnifiedTablesDisabledTest.java44 private static final int AD_SELECTION_ID = 1; field in ReportingComputationHelperUnifiedTablesDisabledTest
57 mReportingComputationHelperUnifiedTablesDisabled.doesAdSelectionIdExist(AD_SELECTION_ID); in testDoesAdSelectionIdExist()
58 verify(mAdSelectionEntryDaoMock).doesAdSelectionIdExist(AD_SELECTION_ID); in testDoesAdSelectionIdExist()
65 .doesAdSelectionMatchingCallerPackageNameExist(AD_SELECTION_ID, TEST_PACKAGE_NAME); in testDoesAdSelectionMatchingCallerPackageNameExist()
68 AD_SELECTION_ID, TEST_PACKAGE_NAME); in testDoesAdSelectionMatchingCallerPackageNameExist()
76 when(mAdSelectionEntryDaoMock.getAdSelectionEntityById(AD_SELECTION_ID)) in testGetReportingComputation()
78 mReportingComputationHelperUnifiedTablesDisabled.getReportingComputation(AD_SELECTION_ID); in testGetReportingComputation()
79 verify(mAdSelectionEntryDaoMock).getAdSelectionEntityById(AD_SELECTION_ID); in testGetReportingComputation()
DAdOutcomeSelectorImplTest.java83 private static final long AD_SELECTION_ID = 12345L; field in AdOutcomeSelectorImplTest
176 .setAdSelectionId(AD_SELECTION_ID) in testAdOutcomeSelectorReturnsOutcomeSuccess()
185 .setAdSelectionIds(Collections.singletonList(AD_SELECTION_ID)) in testAdOutcomeSelectorReturnsOutcomeSuccess()
196 .thenReturn(Futures.immediateFuture(AD_SELECTION_ID)); in testAdOutcomeSelectorReturnsOutcomeSuccess()
209 assertEquals(AD_SELECTION_ID, (long) selectedOutcomeId); in testAdOutcomeSelectorReturnsOutcomeSuccess()
221 .setAdSelectionId(AD_SELECTION_ID) in testAdOutcomeSelectorReturnsNullSuccess()
230 .setAdSelectionIds(Collections.singletonList(AD_SELECTION_ID)) in testAdOutcomeSelectorReturnsNullSuccess()
266 .setAdSelectionId(AD_SELECTION_ID) in testAdOutcomeSelectorJsonException()
275 .setAdSelectionIds(Collections.singletonList(AD_SELECTION_ID)) in testAdOutcomeSelectorJsonException()
336 .setAdSelectionId(AD_SELECTION_ID) in testAdOutcomeSelectorTimeoutFailure()
[all …]
DAdSelectionServiceImplTest.java215 private static final long AD_SELECTION_ID = 1; field in AdSelectionServiceImplTest
495 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessWithRegisterAdBeaconDisabled()
547 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessWithRegisterAdBeaconDisabled()
623 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessCallbackThrowsErrorAuctionServerEnabled()
675 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessCallbackThrowsErrorAuctionServerEnabled()
751 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionFailureCallbackThrowsErrorAuctionServerEnabled()
803 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionFailureCallbackThrowsErrorAuctionServerEnabled()
872 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessCallbackThrowsErrorAuctionServerDisabled()
924 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionSuccessCallbackThrowsErrorAuctionServerDisabled()
1000 .setAdSelectionId(AD_SELECTION_ID) in testReportImpressionFailureCallbackThrowsErrorAuctionServerDisabled()
[all …]
DAdCounterHistogramUpdaterImplTest.java51 private static final long AD_SELECTION_ID = 10; field in AdCounterHistogramUpdaterImplTest
332 AD_SELECTION_ID, in testUpdateNonWinHistogram_nullCallerPackageNameThrows()
344 AD_SELECTION_ID, in testUpdateNonWinHistogram_invalidAdEventTypeThrows()
356 AD_SELECTION_ID, in testUpdateNonWinHistogram_winAdEventTypeThrows()
368 AD_SELECTION_ID, in testUpdateNonWinHistogram_nullTimestampThrows()
381 AD_SELECTION_ID, in testUpdateNonWinHistogram_missingAdSelectionStops()
396 AD_SELECTION_ID, in testUpdateNonWinHistogram_nullAdCounterKeysStops()
413 AD_SELECTION_ID, in testUpdateNonWinHistogram_withAdCounterKeysPersists()
456 AD_SELECTION_ID, in testUpdateNonWinHistogram_withAdCounterKeysPersists_auctionServerOff()
503 AD_SELECTION_ID, in testUpdateNonWinHistogram_withAdCounterKeysPersists_auctionServerOn()
[all …]
DAdCounterHistogramUpdaterNoOpImplTest.java31 private static final long AD_SELECTION_ID = 10; field in AdCounterHistogramUpdaterNoOpImplTest
56 AD_SELECTION_ID, in testUpdateNonWinHistogram_nullCallerPackageNameThrows()
68 AD_SELECTION_ID, in testUpdateNonWinHistogram_nullTimestampThrows()
DOnDeviceAdSelectionRunnerTest.java235 private static final Long AD_SELECTION_ID = 1234L; field in OnDeviceAdSelectionRunnerTest
488 .setAdSelectionId(AD_SELECTION_ID) in testRunAdSelectionSuccess()
535 assertTrue(mAdSelectionEntryDaoSpy.doesAdSelectionIdExist(AD_SELECTION_ID)); in testRunAdSelectionSuccess()
538 mAdSelectionEntryDaoSpy.getAdSelectionEntityById(AD_SELECTION_ID)); in testRunAdSelectionSuccess()
598 .setAdSelectionId(AD_SELECTION_ID) in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
657 assertTrue(mAdSelectionEntryDaoSpy.doesReportingComputationInfoExist(AD_SELECTION_ID)); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
661 AD_SELECTION_ID, expectedAdSelectionInitialization); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
666 mAdSelectionEntryDaoSpy.getReportingComputationInfoById((AD_SELECTION_ID))); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
669 mAdSelectionEntryDaoSpy.getAdSelectionInitializationForId(AD_SELECTION_ID)); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
672 mAdSelectionEntryDaoSpy.getWinningCustomAudienceDataForId(AD_SELECTION_ID)); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
[all …]
DSelectAdsFromOutcomesArgumentUtilTest.java38 private static final long AD_SELECTION_ID = 123456789101112L; field in SelectAdsFromOutcomesArgumentUtilTest
43 .setAdSelectionId(AD_SELECTION_ID)
59 JSScriptArgument.stringArg(ID_FIELD_NAME, Long.toString(AD_SELECTION_ID)), in testConvertsToScriptArgument()
DUpdateAdCounterHistogramWorkerTest.java75 private static final long AD_SELECTION_ID = 20; field in UpdateAdCounterHistogramWorkerTest
109 AD_SELECTION_ID, in setup()
129 eq(AD_SELECTION_ID), in testWorkerUpdatesHistogramAndNotifiesSuccess()
142 sourceParcel.writeLong(AD_SELECTION_ID); in testWorkerValidatesInvalidAdEventTypeAndNotifiesFailure()
271 eq(AD_SELECTION_ID), in testWorkerInvalidArgumentFailureStopsAndNotifiesFailure()
310 eq(AD_SELECTION_ID), in testWorkerSuccessWithCallbackErrorLogsUnknownError()
358 eq(AD_SELECTION_ID), in testWorkerFailureWithCallbackErrorLogsUnknownError()
DReportAndRegisterEventImplTest.java125 private static final long AD_SELECTION_ID = 1; field in ReportAndRegisterEventImplTest
212 .setAdSelectionId(AD_SELECTION_ID) in setup()
224 .setAdSelectionId(AD_SELECTION_ID) in setup()
234 .setAdSelectionId(AD_SELECTION_ID) in setup()
245 .setAdSelectionId(AD_SELECTION_ID) in setup()
725 ReportInteractionInput input = mInputBuilder.setAdSelectionId(AD_SELECTION_ID + 1).build(); in testImplFailsWithUnknownAdSelectionId()
1123 AD_SELECTION_ID, in persistReportingArtifacts()
1130 AD_SELECTION_ID, in persistReportingArtifacts()
DReportAndRegisterEventE2ETest.java187 private static final long AD_SELECTION_ID = 1; field in ReportAndRegisterEventE2ETest
1074 .setAdSelectionId(AD_SELECTION_ID) in initializeReportingArtifacts()
1086 .setAdSelectionId(AD_SELECTION_ID) in initializeReportingArtifacts()
1096 .setAdSelectionId(AD_SELECTION_ID) in initializeReportingArtifacts()
1108 .setAdSelectionId(AD_SELECTION_ID) in initializeReportingArtifacts()
1131 AD_SELECTION_ID, in persistReportingArtifacts()
1138 AD_SELECTION_ID, in persistReportingArtifacts()
DReportAndRegisterEventFallbackImplTest.java130 private static final long AD_SELECTION_ID = 1; field in ReportAndRegisterEventFallbackImplTest
218 .setAdSelectionId(AD_SELECTION_ID) in setup()
230 .setAdSelectionId(AD_SELECTION_ID) in setup()
240 .setAdSelectionId(AD_SELECTION_ID) in setup()
251 .setAdSelectionId(AD_SELECTION_ID) in setup()
1052 ReportInteractionInput input = mInputBuilder.setAdSelectionId(AD_SELECTION_ID + 1).build(); in testImplFailsWithUnknownAdSelectionId()
1504 AD_SELECTION_ID, in persistReportingArtifacts()
1511 AD_SELECTION_ID, in persistReportingArtifacts()
DAdSelectionFailureE2ETest.java207 private static final long AD_SELECTION_ID = 1; field in AdSelectionFailureE2ETest
498 .setAdSelectionId(AD_SELECTION_ID) in testReportImpression_webViewNotInstalled_failsGracefully()
546 .setAdSelectionId(AD_SELECTION_ID) in testReportImpression_webViewNotInstalled_failsGracefully()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DDBAdSelectionTest.java47 private static final long AD_SELECTION_ID = 1; field in DBAdSelectionTest
65 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBAdSelection()
77 assertEquals(AD_SELECTION_ID, dbAdSelection.getAdSelectionId()); in testBuildDBAdSelection()
97 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildRemarketingAdWithNullBiddingLogicUri()
117 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildContextualAdWithNullBiddingLogicUri()
136 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildContextualAdWithNullCustomAudienceSignalsAndBiddingLogicUri()
175 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildDBAdSelectionWithNullCallerPackageName()
191 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBAdSelectionWithNullAdCounterKeys()
203 assertEquals(AD_SELECTION_ID, dbAdSelection.getAdSelectionId()); in testBuildDBAdSelectionWithNullAdCounterKeys()
218 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBAdSelectionWithNullSellerContextualSignals()
[all …]
DDBAdSelectionEntryTest.java46 private static final long AD_SELECTION_ID = 1; field in DBAdSelectionEntryTest
61 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBAdSelectionEntry()
72 assertEquals(AD_SELECTION_ID, dbAdSelectionEntry.getAdSelectionId()); in testBuildDBAdSelectionEntry()
90 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildContextualAdWithNonNullBuyerDecisionLogicJs()
108 .setAdSelectionId(AD_SELECTION_ID) in testFailsToBuildContextualAdWithNonNullCustomAudienceSignals()
142 .setAdSelectionId(AD_SELECTION_ID) in testEqualDBAdSelectionEntryObjectsHaveSameHashCode()
155 .setAdSelectionId(AD_SELECTION_ID) in testEqualDBAdSelectionEntryObjectsHaveSameHashCode()
173 .setAdSelectionId(AD_SELECTION_ID) in testNotEqualDBAdSelectionEntryObjectsHaveDifferentHashCodes()
197 .setAdSelectionId(AD_SELECTION_ID) in testNotEqualDBAdSelectionEntryObjectsHaveDifferentHashCodes()
215 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBAdSelectionEntryWithNullSellerContextualSignals()
[all …]
DDBRegisteredAdInteractionTest.java31 public static final int AD_SELECTION_ID = 1; field in DBRegisteredAdInteractionTest
48 .setAdSelectionId(AD_SELECTION_ID) in testBuildDBRegisteredAdInteraction()
54 assertEquals(AD_SELECTION_ID, dbRegisteredAdInteraction.getAdSelectionId()); in testBuildDBRegisteredAdInteraction()
79 .setAdSelectionId(AD_SELECTION_ID) in testThrowsExceptionWithNoInteractionKey()
92 .setAdSelectionId(AD_SELECTION_ID) in testThrowsExceptionWithNoDestination()
105 .setAdSelectionId(AD_SELECTION_ID) in testThrowsExceptionWithNoInteractionReportingUri()