use of com.fanap.podchat.chat.user.profile.ResultUpdateProfile in project pod-chat-android-sdk by FanapSoft.
the class ChatTest method updateUserProfile.
// @Test
// @LargeTest
// public void updateUserProfile() {
//
//
// sleep(10000);
//
// RequestUpdateProfile request = new RequestUpdateProfile
// .Builder("عیب رندان مکن ای زاهد پاکیزه سرشت")
// .build();
//
// chat.updateChatProfile(request);
//
// sleep(1000);
//
// Mockito.verify(chatListeners, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
//
//
// Assert.assertTrue(true);
//
//
// }
@Test
@LargeTest
public void updateUserProfile() {
String bio = "عیب رندان مکن ای زاهد پاکیزه سرشت";
RequestUpdateProfile request = new RequestUpdateProfile.Builder(bio).build();
//
// presenter.updateChatProfile(request);
//
// sleep(1000);
chat.updateChatProfile(request);
sleep(500);
ChatResponse<ResultUpdateProfile> response = new ChatResponse<>();
ResultUpdateProfile result = new ResultUpdateProfile();
result.setBio(bio);
response.setResult(result);
Mockito.verify(view, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
}
use of com.fanap.podchat.chat.user.profile.ResultUpdateProfile in project pod-chat-android-sdk by FanapSoft.
the class ChatTestSandbox method updateUserProfile.
// @Test
// @LargeTest
// public void updateUserProfile() {
//
//
// sleep(10000);
//
// RequestUpdateProfile request = new RequestUpdateProfile
// .Builder("عیب رندان مکن ای زاهد پاکیزه سرشت")
// .build();
//
// chat.updateChatProfile(request);
//
// sleep(1000);
//
// Mockito.verify(chatListeners, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
//
//
// Assert.assertTrue(true);
//
//
// }
@Test
@LargeTest
public void updateUserProfile() {
String bio = "عیب رندان مکن ای زاهد پاکیزه سرشت";
RequestUpdateProfile request = new RequestUpdateProfile.Builder(bio).build();
//
// presenter.updateChatProfile(request);
//
// sleep(1000);
chat.updateChatProfile(request);
sleep(500);
ChatResponse<ResultUpdateProfile> response = new ChatResponse<>();
ResultUpdateProfile result = new ResultUpdateProfile();
result.setBio(bio);
response.setResult(result);
Mockito.verify(view, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
}
use of com.fanap.podchat.chat.user.profile.ResultUpdateProfile in project pod-chat-android-sdk by FanapSoft.
the class ChatTestIntegration method updateUserProfile.
// @Test
// @LargeTest
// public void updateUserProfile() {
//
//
// sleep(10000);
//
// RequestUpdateProfile request = new RequestUpdateProfile
// .Builder("عیب رندان مکن ای زاهد پاکیزه سرشت")
// .build();
//
// chat.updateChatProfile(request);
//
// sleep(1000);
//
// Mockito.verify(chatListeners, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
//
//
// Assert.assertTrue(true);
//
//
// }
@Test
@LargeTest
public void updateUserProfile() {
String bio = "عیب رندان مکن ای زاهد پاکیزه سرشت";
RequestUpdateProfile request = new RequestUpdateProfile.Builder(bio).build();
//
// presenter.updateChatProfile(request);
//
// sleep(1000);
chat.updateChatProfile(request);
sleep(500);
ChatResponse<ResultUpdateProfile> response = new ChatResponse<>();
ResultUpdateProfile result = new ResultUpdateProfile();
result.setBio(bio);
response.setResult(result);
Mockito.verify(view, Mockito.atLeastOnce()).onChatProfileUpdated(Mockito.any());
}
Aggregations