use of io.github.asw.i3a.operatorsWebClient.entitites.UserInfo in project InciDashboard_i3a by Arquisoft.
the class UserInfoTest method textExtra.
@Test
public void textExtra() {
UserInfo u = new UserInfo("hola", "holi");
assertTrue(u.getLogin().equals("hola"));
assertTrue(u.getPassword().equals("holi"));
UserInfo u2 = new UserInfo();
assertTrue(u.canEquals(u2));
}