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 19966958788854a5066a35eed2cc40de9d4b67fd..1805a18980eb96baca464a59e002091d404e51b8 100644 --- a/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js +++ b/notification/ans_standard/actsNotificationManagerSlotTest/src/main/js/test/ActsNotificationManagerSlotTest.js @@ -1370,6 +1370,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')