use of com.sanctionco.thunder.models.User in project thunder by RohanNagar.
the class ThunderClientTest method testResetVerificationStatus.
@Test
void testResetVerificationStatus() throws Exception {
User response = client.resetVerificationStatus("email", "password").get();
assertEquals(user.getEmail(), response.getEmail());
}
use of com.sanctionco.thunder.models.User in project thunder by RohanNagar.
the class ThunderClientTest method testGetUser.
@Test
void testGetUser() throws Exception {
User response = client.getUser("email", password).get();
assertEquals(user.getEmail(), response.getEmail());
}
use of com.sanctionco.thunder.models.User in project thunder by RohanNagar.
the class ThunderClientTest method testVerifyUser.
@Test
void testVerifyUser() throws Exception {
User response = client.verifyUser("email", "token").get();
assertEquals(user.getEmail(), response.getEmail());
}
use of com.sanctionco.thunder.models.User in project thunder by RohanNagar.
the class ThunderClientTest method testDeleteUser.
@Test
void testDeleteUser() throws Exception {
User response = client.deleteUser("email", password).get();
assertEquals(user.getEmail(), response.getEmail());
}
use of com.sanctionco.thunder.models.User in project thunder by RohanNagar.
the class ThunderClientTest method testPostUser.
@Test
void testPostUser() throws Exception {
User response = client.postUser(user).get();
assertEquals(user.getEmail(), response.getEmail());
}
Aggregations