From fe8c3392fa65a1febc67f951a5f7a314755cbc47 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 7 Feb 2020 10:49:16 +0600 Subject: [PATCH] Actialize bot action tests --- .../insanusmokrassar/TelegramBotAPI/types/BotActionTests.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commonTest/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/BotActionTests.kt b/src/commonTest/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/BotActionTests.kt index c208576169..a00391b948 100644 --- a/src/commonTest/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/BotActionTests.kt +++ b/src/commonTest/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/BotActionTests.kt @@ -26,6 +26,8 @@ class BotActionTests { UploadAudioAction -> example.botAction.actionName UploadDocumentAction -> example.botAction.actionName FindLocationAction -> example.botAction.actionName + RecordVideoNoteAction -> example.botAction.actionName + UploadVideoNoteAction -> example.botAction.actionName } ) } @@ -52,7 +54,9 @@ class BotActionTests { RecordAudioAction.example(), UploadAudioAction.example(), UploadDocumentAction.example(), - FindLocationAction.example() + FindLocationAction.example(), + RecordVideoNoteAction.example(), + UploadVideoNoteAction.example() ).forEach { checkBotActionSerializeDeserialize(it) }