@Test
  public void test_getSet() {

    Assert.assertEquals(pwAssociatedApp.getTitle(), TITLE);
    Assert.assertEquals(pwAssociatedApp.getIdGooglePlay(), ID_GOOGLE_PLAY);
    Assert.assertEquals(pwAssociatedApp.getIdAmazon(), ID_AMAZON);
    Assert.assertTrue(pwAssociatedApp.isValid());
  }
 private void fillAssociatedApp() {
   pwAssociatedApp.setTitle(TITLE);
   pwAssociatedApp.setIdGooglePlay(ID_GOOGLE_PLAY);
   pwAssociatedApp.setIdAmazon(ID_AMAZON);
 }