public void TestDatosPregunta()
        {
            //Arranque
            String  Pregunta = Convert.ToString(TestContext.DataRow["Preguntas"]);;
            Boolean respues;

            Nube_de_palabras.PantallaProfesor resp = new Nube_de_palabras.PantallaProfesor();

            //Act
            respues = resp.VerificarPregunta(Pregunta);

            //Assert
            Assert.AreEqual(true, respues);
        }
        public void Test_DatosCantidadDePreguntas()
        {
            //Arranque
            int canti = 1;
            int respues;

            Nube_de_palabras.PantallaProfesor resp = new Nube_de_palabras.PantallaProfesor();

            //Act
            respues = (int)resp.dEntrada.Value;

            //Assert
            Assert.AreEqual(1, respues);
        }
        public void Test_DatosPregunta()
        {
            //Arranque
            String  Pregunta = "Como estas";
            Boolean respues;

            Nube_de_palabras.PantallaProfesor resp = new Nube_de_palabras.PantallaProfesor();

            //Act
            respues = resp.VerificarPregunta(Pregunta);

            //Assert
            Assert.AreEqual(true, respues);
        }