public void NombreToStringTest()
        {
            Nombre target   = new Nombre();
            string expected = "Nombre";
            string actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "NombreToStringTest");
        }
        public void NombreConstructorTest()
        {
            Nombre target = new Nombre();

            Assert.IsNotNull(target, "NombreConstructorTest");
        }