public void TestActionRepo_SaveNew()
        {
            Personne _pers  = _personneRepo.GetAll()[0];    //user Agathe
            Album    _alb   = _albumRepository.GetAll()[0]; //Tintin au Tibet
            var      action = new Action("AjouterSouhait", _pers, _alb);

            _actionRepository.SaveAction(action);
            // Recherche des actions portant le même nom
            var actions = _actionRepository.GetAll().Where(a => a.Nom ==
                                                           "AjouterSouhait").ToList();

            // 4 actions correspondant dans le jeu de données de test
            Assert.AreEqual(4, actions.Count);
            Action nouvelleAction = actions[0];

            Assert.AreEqual("AjouterSouhait", nouvelleAction.Nom);
        }