Ejemplo n.º 1
0
  @SmallTest
  @MediumTest
  @LargeTest
  public void testAEmptyChatHistory() {
    goToChat();

    ChatStorage chatStorage = ChatStorage.getInstance();
    for (String conversation : chatStorage.getChatList()) {
      chatStorage.removeDiscussion(conversation);
    }

    Assert.assertEquals(0, chatStorage.getUnreadMessageCount());
  }