diff --git a/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js b/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js index 7b82c72d82df93ea279a89327f9c5ce51cbd424a..55561435bc6427655ebabe0a3e6d9238b13778c4 100644 --- a/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js +++ b/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js @@ -1348,6 +1348,11 @@ export default function ActsNotificationManagerSlotTest() { expect(notificationManager.SlotType.SERVICE_INFORMATION).assertEqual(2) expect(notificationManager.SlotType.CONTENT_INFORMATION).assertEqual(3) expect(notificationManager.SlotType.OTHER_TYPES).assertEqual(0xFFFF) + expect(notificationManager.SlotLevel.LEVEL_NONE).assertEqual(0) + expect(notificationManager.SlotLevel.LEVEL_MIN).assertEqual(1) + expect(notificationManager.SlotLevel.LEVEL_LOW).assertEqual(2) + expect(notificationManager.SlotLevel.LEVEL_DEFAULT).assertEqual(3) + expect(notificationManager.SlotLevel.LEVEL_HIGH).assertEqual(4) done() }) console.info(TAG + 'SUB_NOTIFICATION_ANS_MANAGER_SLOT_TEST END') diff --git a/notification/ans_standard/actsNotificationSlotTest/src/main/js/test/ActsNotificationSlotTest.js b/notification/ans_standard/actsNotificationSlotTest/src/main/js/test/ActsNotificationSlotTest.js index 10b4fc44d3f1f639d0abf29dec2e8e9412c47b2d..d286371aa34da02f586deed5bc4aaf6da8598352 100644 --- a/notification/ans_standard/actsNotificationSlotTest/src/main/js/test/ActsNotificationSlotTest.js +++ b/notification/ans_standard/actsNotificationSlotTest/src/main/js/test/ActsNotificationSlotTest.js @@ -1370,6 +1370,11 @@ export default function ActsNotificationSlotTest() { expect(notification.SlotType.SERVICE_INFORMATION).assertEqual(2) expect(notification.SlotType.CONTENT_INFORMATION).assertEqual(3) expect(notification.SlotType.OTHER_TYPES).assertEqual(0xFFFF) + expect(notification.SlotLevel.LEVEL_NONE).assertEqual(0) + expect(notification.SlotLevel.LEVEL_MIN).assertEqual(1) + expect(notification.SlotLevel.LEVEL_LOW).assertEqual(2) + expect(notification.SlotLevel.LEVEL_DEFAULT).assertEqual(3) + expect(notification.SlotLevel.LEVEL_HIGH).assertEqual(4) done() }) console.info(TAG + 'SUB_NOTIFICATION_ANS_SLOT_TEST END')