public void CommentarySetCreatorUserTest()
        {
            Commentary commentary     = new Commentary(creationDateTime, creatorUser, "Comentario");
            User       creatorUserNew = new User("NombreNew", "ApellidoNew", "EmailNew", birthDate, "PasswordNew", teamsUser);

            commentary.setCreatorUser(creatorUserNew);
            Assert.AreEqual(commentary.getCreatorUser(), creatorUserNew);
        }