(String username)
| 158 | } |
| 159 | |
| 160 | private static String tweetMessage(String username) { |
| 161 | String[] messages = {"Yes! video, it's here: ", "Alright, i got this: ", "Video? Here we go: ", "Yes! video is ready: ", "Yes, Video! At your service: "}; |
| 162 | int rand = (int) (messages.length * Math.random()); |
| 163 | |
| 164 | return messages[rand] + getUserPage(username); |
| 165 | } |
| 166 | |
| 167 | private static void replyTweet(String text, String inReplyToTweetId, String whoMentionedMe) { |
| 168 |
no test coverage detected