-
Notifications
You must be signed in to change notification settings - Fork 6
/
types_inline_test.go
35 lines (32 loc) · 1.41 KB
/
types_inline_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package micha
import (
"testing"
)
func TestInlineQueryResult(t *testing.T) {
(InlineQueryResultArticle{}).itsInlineQueryResult()
(InlineQueryResultPhoto{}).itsInlineQueryResult()
(InlineQueryResultCachedPhoto{}).itsInlineQueryResult()
(InlineQueryResultGif{}).itsInlineQueryResult()
(InlineQueryResultCachedGif{}).itsInlineQueryResult()
(InlineQueryResultMpeg4Gif{}).itsInlineQueryResult()
(InlineQueryResultCachedMpeg4Gif{}).itsInlineQueryResult()
(InlineQueryResultVideo{}).itsInlineQueryResult()
(InlineQueryResultCachedVideo{}).itsInlineQueryResult()
(InlineQueryResultAudio{}).itsInlineQueryResult()
(InlineQueryResultCachedAudio{}).itsInlineQueryResult()
(InlineQueryResultVoice{}).itsInlineQueryResult()
(InlineQueryResultCachedVoice{}).itsInlineQueryResult()
(InlineQueryResultDocument{}).itsInlineQueryResult()
(InlineQueryResultCachedDocument{}).itsInlineQueryResult()
(InlineQueryResultLocation{}).itsInlineQueryResult()
(InlineQueryResultVenue{}).itsInlineQueryResult()
(InlineQueryResultCachedSticker{}).itsInlineQueryResult()
(InlineQueryResultContact{}).itsInlineQueryResult()
(InlineQueryResultGame{}).itsInlineQueryResult()
}
func TestInputMessageContent(t *testing.T) {
(InputTextMessageContent{}).itsInputMessageContent()
(InputLocationMessageContent{}).itsInputMessageContent()
(InputVenueMessageContent{}).itsInputMessageContent()
(inputMessageContentImplementation{}).itsInputMessageContent()
}