@Test
 @Transactional
 public void testCreateExternalAccount() throws Exception {
   Transaction.performInOne(
       () -> {
         service.createExternalAccount(SocialNetworkID.FACEBOOK, "13", "1345");
         return null;
       });
   ExternalAccount account = service.getExternalAccount(SocialNetworkID.FACEBOOK, "1345");
   assertThat(account, is(notNullValue()));
   assertThat(account.getSilverpeasUserId(), is("13"));
 }