/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/ |
D | FillResponseTest.java | 25 import static org.testng.Assert.assertThrows; 73 assertThrows(IllegalArgumentException.class, in testBuilder_setAuthentication_invalid() 76 assertThrows(IllegalArgumentException.class, in testBuilder_setAuthentication_invalid() 80 assertThrows(IllegalArgumentException.class, in testBuilder_setAuthentication_invalid() 84 assertThrows(IllegalArgumentException.class, in testBuilder_setAuthentication_invalid() 87 assertThrows(IllegalArgumentException.class, in testBuilder_setAuthentication_invalid() 99 assertThrows(IllegalStateException.class, in testBuilder_setAuthentication_illegalState() 102 assertThrows(IllegalStateException.class, in testBuilder_setAuthentication_illegalState() 109 assertThrows(NullPointerException.class, () -> new FillResponse.Builder().setHeader(null)); in testBuilder_setHeaderOrFooterInvalid() 110 assertThrows(NullPointerException.class, () -> new FillResponse.Builder().setFooter(null)); in testBuilder_setHeaderOrFooterInvalid() [all …]
|
D | UserDataTest.java | 29 import static org.testng.Assert.assertThrows; 95 assertThrows(NullPointerException.class, in testBuilder_invalid() 97 assertThrows(IllegalArgumentException.class, in testBuilder_invalid() 99 assertThrows(NullPointerException.class, in testBuilder_invalid() 101 assertThrows(IllegalArgumentException.class, in testBuilder_invalid() 103 assertThrows(IllegalArgumentException.class, in testBuilder_invalid() 105 assertThrows(IllegalArgumentException.class, in testBuilder_invalid() 107 assertThrows(NullPointerException.class, () -> new UserData.Builder(mId, mValue, null)); in testBuilder_invalid() 108 assertThrows(IllegalArgumentException.class, () -> new UserData.Builder(mId, mValue, "")); in testBuilder_invalid() 113 assertThrows(NullPointerException.class, () -> mBuilder.add(null, mCategoryId)); in testAdd_invalid() [all …]
|
D | SaveInfoTest.java | 25 import static org.testng.Assert.assertThrows; 48 assertThrows(IllegalArgumentException.class, in testRequiredIdsBuilder_null() 54 assertThrows(IllegalArgumentException.class, in testRequiredIdsBuilder_empty() 60 assertThrows(IllegalArgumentException.class, in testRequiredIdsBuilder_nullEntry() 69 assertThrows(IllegalArgumentException.class, ()-> builder.setOptionalIds(null)); in testSetOptionalIds_null() 76 assertThrows(IllegalArgumentException.class, in testSetOptional_empty() 84 assertThrows(IllegalArgumentException.class, in testSetOptional_nullEntry() 93 assertThrows(IllegalArgumentException.class, in testAddSanitizer_illegalArgs() 96 assertThrows(IllegalArgumentException.class, in testAddSanitizer_illegalArgs() 99 assertThrows(IllegalArgumentException.class, in testAddSanitizer_illegalArgs() [all …]
|
D | CustomDescriptionUnitTest.java | 22 import static org.testng.Assert.assertThrows; 55 assertThrows(NullPointerException.class, () -> new CustomDescription.Builder(null)); in testNullConstructor() 60 assertThrows(IllegalArgumentException.class, () -> mBuilder.addChild(42, null)); in testAddChild_null() 65 assertThrows(IllegalArgumentException.class, in testAddChild_invalidImplementation() 71 assertThrows(IllegalArgumentException.class, in testBatchUpdate_nullCondition() 77 assertThrows(IllegalArgumentException.class, in testBatchUpdate_invalidImplementation() 83 assertThrows(NullPointerException.class, in testBatchUpdate_nullUpdates() 89 assertThrows(IllegalArgumentException.class, () -> mBuilder.addOnClickAction(42, null)); in testSetOnClickAction_null() 94 assertThrows(IllegalArgumentException.class, in testSetOnClickAction_invalidImplementation() 124 assertThrows(IllegalStateException.class, () -> mBuilder.build()); in testNoMoreInteractionsAfterBuild() [all …]
|
D | AutofillValueTest.java | 21 import static org.testng.Assert.assertThrows; 52 assertThrows(IllegalStateException.class, v::getToggleValue); in createTextValue() 53 assertThrows(IllegalStateException.class, v::getListValue); in createTextValue() 54 assertThrows(IllegalStateException.class, v::getDateValue); in createTextValue() 70 assertThrows(IllegalStateException.class, v::getTextValue); in createToggleValue() 71 assertThrows(IllegalStateException.class, v::getListValue); in createToggleValue() 72 assertThrows(IllegalStateException.class, v::getDateValue); in createToggleValue() 88 assertThrows(IllegalStateException.class, v::getTextValue); in createListValue() 89 assertThrows(IllegalStateException.class, v::getToggleValue); in createListValue() 90 assertThrows(IllegalStateException.class, v::getDateValue); in createListValue() [all …]
|
D | ValidatorsTest.java | 28 import static org.testng.Assert.assertThrows; 51 assertThrows(NullPointerException.class, () -> and((Validator) null)); in testAnd_null() 52 assertThrows(NullPointerException.class, () -> and(mValidValidator, null)); in testAnd_null() 53 assertThrows(NullPointerException.class, () -> and(null, mValidValidator)); in testAnd_null() 58 assertThrows(IllegalArgumentException.class, () -> and(mInvalidValidator)); in testAnd_invalid() 59 assertThrows(IllegalArgumentException.class, () -> and(mValidValidator, mInvalidValidator)); in testAnd_invalid() 60 assertThrows(IllegalArgumentException.class, () -> and(mInvalidValidator, mValidValidator)); in testAnd_invalid() 89 assertThrows(NullPointerException.class, () -> or((Validator) null)); in testOr_null() 90 assertThrows(NullPointerException.class, () -> or(mValidValidator, null)); in testOr_null() 91 assertThrows(NullPointerException.class, () -> or(null, mValidValidator)); in testOr_null() [all …]
|
D | BatchUpdatesTest.java | 22 import static org.testng.Assert.assertThrows; 43 assertThrows(IllegalArgumentException.class, () -> mBuilder.transformChild(42, null)); in testAddTransformation_null() 48 assertThrows(IllegalArgumentException.class, in testAddTransformation_invalidClass() 54 assertThrows(NullPointerException.class, () -> mBuilder.updateTemplate(null)); in testSetUpdateTemplate_null() 59 assertThrows(IllegalStateException.class, () -> mBuilder.build()); in testEmptyObject() 65 assertThrows(IllegalStateException.class, in testNoMoreChangesAfterBuild() 67 assertThrows(IllegalStateException.class, in testNoMoreChangesAfterBuild()
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/media/ |
D | CarAudioManagerPermissionTest.java | 27 import static org.junit.Assert.assertThrows; 75 Exception e = assertThrows(SecurityException.class, in setGroupVolumePermission() 82 Exception e = assertThrows(SecurityException.class, in setGroupVolumeWithZonePermission() 89 Exception e = assertThrows(SecurityException.class, in getGroupMaxVolumePermission() 96 Exception e = assertThrows(SecurityException.class, in getGroupMaxVolumeWithZonePermission() 103 Exception e = assertThrows(SecurityException.class, in getGroupMinVolumePermission() 110 Exception e = assertThrows(SecurityException.class, in getGroupMinVolumeWithZonePermission() 117 Exception e = assertThrows(SecurityException.class, in getGroupVolumePermission() 124 Exception e = assertThrows(SecurityException.class, in getGroupVolumeWithZonePermission() 131 Exception e = assertThrows(SecurityException.class, in setFadeTowardFrontPermission() [all …]
|
/cts/common/device-side/util-axt/tests/src/com/android/compatibility/common/util/ |
D | TimeoutTest.java | 22 import static org.testng.Assert.assertThrows; 50 assertThrows(IllegalArgumentException.class, ()-> new Timeout(null, 1, 2, 2)); in testInvalidConstructor() 51 assertThrows(IllegalArgumentException.class, ()-> new Timeout("", 1, 2, 2)); in testInvalidConstructor() 53 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, -1, 2, 2)); in testInvalidConstructor() 54 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 0, 2, 2)); in testInvalidConstructor() 56 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, -1, 2)); in testInvalidConstructor() 57 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 0, 2)); in testInvalidConstructor() 58 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 1, 2)); in testInvalidConstructor() 60 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 2, -1)); in testInvalidConstructor() 61 assertThrows(IllegalArgumentException.class, ()-> new Timeout(NAME, 1, 2, 0)); in testInvalidConstructor() [all …]
|
/cts/tests/tests/media/audio/src/android/media/audio/cts/ |
D | SpatializerTest.java | 21 import static org.junit.Assert.assertThrows; 88 assertThrows("Able to call addCompatibleAudioDevice without permission", in testSupportedDevices() 91 assertThrows("Able to call removeCompatibleAudioDevice without permission", in testSupportedDevices() 94 assertThrows("Able to call getCompatibleAudioDevice without permission", in testSupportedDevices() 97 assertThrows("Able to call isAvailableForDevice without permission", in testSupportedDevices() 100 assertThrows("Able to call hasHeadTracker without permission", in testSupportedDevices() 103 assertThrows("Able to call setHeadTrackerEnabled without permission", in testSupportedDevices() 106 assertThrows("Able to call isHeadTrackerEnabled without permission", in testSupportedDevices() 152 assertThrows("Able to call getHeadTrackingMode without permission", in testHeadTrackingListener() 155 assertThrows("Able to call getDesiredHeadTrackingMode without permission", in testHeadTrackingListener() [all …]
|
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/ |
D | BluetoothDeviceTest.java | 33 import static org.junit.Assert.assertThrows; 131 assertThrows(IllegalArgumentException.class, () -> mFakeDevice.setAlias("")); in setAlias_getAlias() 136 assertThrows("BluetoothDevice.setAlias without" in setAlias_getAlias() 184 assertThrows("No BLUETOOTH_PRIVILEGED permission", SecurityException.class, in getIdentityAddress() 194 assertThrows("No BLUETOOTH_PRIVILEGED permission", SecurityException.class, in getConnectionHandle() 219 assertThrows(SecurityException.class, () -> mFakeDevice.getBatteryLevel()); in getBatteryLevel() 234 assertThrows(SecurityException.class, () -> mFakeDevice.isBondingInitiatedLocally()); in isBondingInitiatedLocally() 260 assertThrows(SecurityException.class, () -> mFakeDevice.setPin("123456")); in setPin() 273 assertThrows(SecurityException.class, () -> mFakeDevice.connect()); in connect_disconnect() 274 assertThrows(SecurityException.class, () -> mFakeDevice.disconnect()); in connect_disconnect() [all …]
|
D | ScanSettingsTest.java | 20 import static org.junit.Assert.assertThrows; 68 assertThrows("Check boundary of ScanSettings.Builder.setScanMode argument", in builderSettings() 71 assertThrows("Check boundary of ScanSettings.Builder.setScanMode argument", in builderSettings() 76 assertThrows("Check boundary of ScanSettings.Builder.setCallbackType argument", in builderSettings() 79 assertThrows("Check boundary of ScanSettings.Builder.setCallbackType argument", in builderSettings() 84 assertThrows("Check boundary of ScanSettings.Builder.setScanResultType argument", in builderSettings() 87 assertThrows("Check boundary of ScanSettings.Builder.setScanResultType argument", in builderSettings() 91 assertThrows("Check boundary of ScanSettings.Builder.setReportDelay argument", in builderSettings() 96 assertThrows("Check boundary of ScanSettings.Builder.setNumOfMatches argument", in builderSettings() 99 assertThrows("Check boundary of ScanSettings.Builder.setNumOfMatches argument", in builderSettings() [all …]
|
D | BluetoothAdapterTest.java | 28 import static org.junit.Assert.assertThrows; 200 assertThrows(SecurityException.class, () -> mAdapter.getAddress()); in getAddress() 233 assertThrows(SecurityException.class, () -> mAdapter.setName("The name")); in setName_getName() 234 assertThrows(SecurityException.class, () -> mAdapter.getName()); in setName_getName() 256 assertThrows(SecurityException.class, () -> mAdapter.getBondedDevices()); in getBondedDevices() 286 assertThrows(IllegalArgumentException.class, () -> mAdapter.getRemoteDevice((String) null)); in getRemoteDevice() 287 assertThrows(IllegalArgumentException.class, () -> in getRemoteDevice() 289 assertThrows(IllegalArgumentException.class, () -> mAdapter.getRemoteDevice((byte[]) null)); in getRemoteDevice() 290 assertThrows(IllegalArgumentException.class, () -> in getRemoteDevice() 312 assertThrows(IllegalArgumentException.class, in getRemoteLeDevice() [all …]
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/ |
D | CarPublicPermissionTest.java | 18 import static org.junit.Assert.assertThrows; 41 assertThrows(SecurityException.class, () -> mCar.getCarManager( in testGetCarManagerPermissions() 44 assertThrows(SecurityException.class, () -> mCar.getCarManager( in testGetCarManagerPermissions() 48 assertThrows(SecurityException.class, () -> mCar.getCarManager(Car.DIAGNOSTIC_SERVICE)); in testGetCarManagerPermissions() 51 assertThrows(SecurityException.class, () -> mCar.getCarManager( in testGetCarManagerPermissions() 54 assertThrows(SecurityException.class, () -> mCar.getCarManager(Car.TEST_SERVICE)); in testGetCarManagerPermissions() 56 assertThrows(SecurityException.class, () -> mCar.getCarManager( in testGetCarManagerPermissions()
|
D | CarPermissionTest.java | 18 import static org.junit.Assert.assertThrows; 41 assertThrows(SecurityException.class, () -> mCar.enableFeature("some feature")); in testEnableFeaturePermission() 46 assertThrows(SecurityException.class, () -> mCar.disableFeature("some feature")); in testDisableFeaturePermission() 51 assertThrows(SecurityException.class, () -> mCar.getAllEnabledFeatures()); in testGetAllEnabledFeaturesPermission() 56 assertThrows(SecurityException.class, () -> mCar.getAllPendingDisabledFeatures()); in testGetAllPendingDisabledFeaturesPermission() 61 assertThrows(SecurityException.class, () -> mCar.getAllPendingEnabledFeatures()); in testGetAllPendingEnabledFeaturesPermission()
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/user/ |
D | CarUserManagerPermissionTest.java | 31 import static org.junit.Assert.assertThrows; 68 Exception e = assertThrows(SecurityException.class, in testSwitchUser() 80 Exception e = assertThrows(SecurityException.class, in testSwitchUserIgnoringUxRestriction() 91 Exception e = assertThrows(SecurityException.class, () -> mCarUserManager.switchUser(100)); in testSwitchUserId() 98 Exception e = assertThrows(SecurityException.class, in testCreateUser() 109 Exception e = assertThrows(SecurityException.class, in testCreateUserId() 117 Exception e = assertThrows(SecurityException.class, in testCannotCreateAdminUserWithoutManageUsersPermission() 126 Exception e = assertThrows(SecurityException.class, in testCannotCreateAdminUserWithTypeWithoutManageUsersPermission() 135 Exception e = assertThrows(SecurityException.class, in testRemoveUser() 146 Exception e = assertThrows(SecurityException.class, in testRemoveUserId() [all …]
|
/cts/tests/appsearch/src/com/android/cts/appsearch/external/app/ |
D | PropertyPathCtsTest.java | 39 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("")); in testPropertyPathInvalid() 42 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("]")); in testPropertyPathInvalid() 45 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[")); in testPropertyPathInvalid() 48 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[]")); in testPropertyPathInvalid() 51 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[b]")); in testPropertyPathInvalid() 54 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[-1]")); in testPropertyPathInvalid() 57 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[0.]")); in testPropertyPathInvalid() 60 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[0][0]")); in testPropertyPathInvalid() 63 e = Assert.assertThrows(IllegalArgumentException.class, () -> new PropertyPath("a[0]b")); in testPropertyPathInvalid() 114 Assert.assertThrows( in testPathSegmentInvalid() [all …]
|
/cts/tests/tests/os/src/android/os/cts/ |
D | WorkDurationTest.java | 20 import static org.junit.Assert.assertThrows; 63 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument() 66 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument() 70 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument() 73 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument() 76 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument() 79 assertThrows(IllegalArgumentException.class, () -> { in testSetters_IllegalArgument()
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/power/ |
D | CarPowerManagerPermissionTest.java | 27 import static org.junit.Assert.assertThrows; 60 Exception e = assertThrows(SecurityException.class, () -> mCarPowerManager.getPowerState()); in testGetPowerState() 67 Exception e = assertThrows(SecurityException.class, in testRequestShutdownOnNextSuspend() 75 Exception e = assertThrows(SecurityException.class, in testScheduleNextWakeupTime() 83 Exception e = assertThrows(SecurityException.class, in testSetListener() 91 Exception e = assertThrows(SecurityException.class, in testSetListenerWithCompletion() 100 Exception e = assertThrows(SecurityException.class, in testGetCurrentPowerPolicy() 108 Exception e = assertThrows(SecurityException.class, in testApplyPowerPolicy() 119 Exception e = assertThrows(SecurityException.class, in testAddPowerPolicyChangeListener() 127 Exception e = assertThrows(SecurityException.class, in testNotifyUserActivity()
|
/cts/tests/tests/hardware/src/android/hardware/input/cts/tests/ |
D | VirtualInputDeviceConfigTest.java | 21 import static org.junit.Assert.assertThrows; 329 assertThrows(NullPointerException.class, in virtualDpadConfig_missingName_throwsException() 339 assertThrows(IllegalArgumentException.class, in virtualDpadConfig_nameLengthExceedsLimit_throwsException() 346 assertThrows(IllegalArgumentException.class, in virtualDpadConfig_nameLengthExceedsLimit_throwsException() 357 assertThrows(IllegalArgumentException.class, in virtualDpadConfig_missingDisplayId_throwsException() 367 assertThrows(NullPointerException.class, in virtualKeyboardConfig_missingName_throwsException() 377 assertThrows(IllegalArgumentException.class, in virtualKeyboardConfig_nameLengthExceedsLimit_throwsException() 384 assertThrows(IllegalArgumentException.class, in virtualKeyboardConfig_nameLengthExceedsLimit_throwsException() 395 assertThrows(IllegalArgumentException.class, in virtualKeyboardConfig_missingDisplayId_throwsException() 405 assertThrows(NullPointerException.class, in virtualMouseConfig_missingName_throwsException() [all …]
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/am/ |
D | CarActivityManagerPermissionTest.java | 21 import static org.junit.Assert.assertThrows; 63 SecurityException e = assertThrows(SecurityException.class, in testSetPersistentActivity_requiresPermission() 73 SecurityException e = assertThrows(SecurityException.class, in testSetPersistentActivities_requiresPermission() 82 SecurityException e = assertThrows(SecurityException.class, in testRegisterTaskMonitor_requiresPermission() 90 SecurityException e = assertThrows(SecurityException.class, in testGetVisibleTasks_requiresPermission() 99 SecurityException e = assertThrows(SecurityException.class, in testCreateTaskMirroringToken_requiresPermission() 108 SecurityException e = assertThrows(SecurityException.class, in testCreateDisplayMirroringToken_requiresPermission() 117 SecurityException e = assertThrows(SecurityException.class, in testGetMirroredSurface_requiresPermission() 127 SecurityException e = assertThrows(SecurityException.class, in testMoveRootTaskToDisplay_requiresPermission() 135 SecurityException e = assertThrows(SecurityException.class, in registerCarSystemUIProxy_requiresPermission() [all …]
|
/cts/tests/tests/graphics/src/android/graphics/fonts/ |
D | FontFamilyUpdateRequestTest.java | 25 import static org.testng.Assert.assertThrows; 59 assertThrows(NullPointerException.class, () -> in font() 61 assertThrows(IllegalArgumentException.class, () -> in font() 63 assertThrows(NullPointerException.class, () -> in font() 66 assertThrows(NullPointerException.class, () -> in font() 69 assertThrows(NullPointerException.class, () -> in font() 72 assertThrows(IllegalArgumentException.class, () -> in font() 92 assertThrows(NullPointerException.class, () -> in fontFamily() 94 assertThrows(IllegalArgumentException.class, () -> in fontFamily() 96 assertThrows(NullPointerException.class, () -> in fontFamily() [all …]
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/cluster/ |
D | ClusterHomeManagerPermissionTest.java | 23 import static org.junit.Assert.assertThrows; 86 SecurityException thrown = assertThrows(SecurityException.class, in testRegisterClusterStateListener_requiresPermission() 94 SecurityException thrown = assertThrows(SecurityException.class, in testRegisterClusterNavigationStateListener_requiresPermission() 103 SecurityException thrown = assertThrows(SecurityException.class, in testGetClusterState_requiresPermission() 110 SecurityException thrown = assertThrows(SecurityException.class, in testUnReportState_requiresPermission() 117 SecurityException thrown = assertThrows(SecurityException.class, in testRequestDisplay_requiresPermission() 124 SecurityException thrown = assertThrows(SecurityException.class, in testStartFixedActivityModeAsUser_requiresPermission() 132 SecurityException thrown = assertThrows(SecurityException.class, in testStopFixedActivityMode_requiresPermission() 140 SecurityException thrown = assertThrows(SecurityException.class, in testSendHeartbeat_requiresPermission() 149 SecurityException thrown = assertThrows(SecurityException.class, in testStartVisibilityMonitoring_requiresPermission()
|
/cts/tests/credentials/src/android/credentials/cts/unittests/service/ |
D | CredentialEntryTest.java | 21 import static org.testng.Assert.assertThrows; 59 assertThrows(NullPointerException.class, in testConstructorWithTypeAndSlice_nullType() 65 assertThrows(NullPointerException.class, in testConstructorWithTypeAndSlice_nullSlice() 71 assertThrows(IllegalArgumentException.class, in testConstructorWithRawId_nullId() 77 assertThrows(NullPointerException.class, in testConstructorWithBeginGetCredentialOption_nullOption_throwsNPE() 92 assertThrows(IllegalArgumentException.class, in testConstructorWithRawId_emptyId() 98 assertThrows(IllegalArgumentException.class, in testConstructorWithRawId_nullType() 104 assertThrows(IllegalArgumentException.class, in testConstructorWithRawId_emptyType() 110 assertThrows(NullPointerException.class, () -> new CredentialEntry( in testConstructorWithRawId_nullSlice()
|
/cts/tests/tests/car_permission_tests/src/android/car/cts/permissiontest/telemetry/ |
D | CarTelemetryManagerPermissionTest.java | 21 import static org.junit.Assert.assertThrows; 56 Exception e = assertThrows(SecurityException.class, in testAddMetricsConfig() 65 Exception e = assertThrows(SecurityException.class, in testRemoveMetricsConfig() 73 Exception e = assertThrows(SecurityException.class, in testRemoveAllMetricsConfigs() 81 Exception e = assertThrows(SecurityException.class, in testGetFinishedReport() 90 Exception e = assertThrows(SecurityException.class, in testGetAllFinishedReports() 99 Exception e = assertThrows(SecurityException.class, in testSetReportReadyListener() 108 Exception e = assertThrows(SecurityException.class, in testClearReportReadyListener()
|