From d168c8b4a6aaeeecec9f50d18ab48d8f789eda3a Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Fri, 14 Apr 2017 17:21:31 +0900 Subject: [PATCH] tests for the coverages --- mastodon_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mastodon_test.go b/mastodon_test.go index d0ad68d..3212543 100644 --- a/mastodon_test.go +++ b/mastodon_test.go @@ -75,3 +75,10 @@ func TestPostStatus(t *testing.T) { t.Fatalf("should not be fail: %v", err) } } + +func TestForTheCoverages(t *testing.T) { + (*UpdateEvent)(nil).event() + (*NotificationEvent)(nil).event() + (*DeleteEvent)(nil).event() + (*ErrorEvent)(nil).event() +}