public void GetServerLastFechaTest()
        {
            ServerLastDataMapper target = new ServerLastDataMapper(); // TODO: Inicializar en un valor adecuado
            long expected = 0;                                        // TODO: Inicializar en un valor adecuado
            long actual;

            actual = target.GetServerLastFecha();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Compruebe la exactitud de este método de prueba.");
        }
Example #2
0
        public long GetServerLast()
        {
            long mensaje = 0;
            ServerLastDataMapper server = new ServerLastDataMapper();

            if (server.GetServerLastFecha() != 0)
            {
                mensaje = server.GetServerLastFecha();
            }
            return(mensaje);
        }