Ejemplo n.º 1
0
 public void errMsgOrIen_Empty()
 {
     Assert.AreEqual("", VistaUtils.errMsgOrIen(""));
 }
Ejemplo n.º 2
0
        public void errMsgOrIen_Nan()
        {
            string response = "no error code";

            VistaUtils.errMsgOrIen(response);
        }
Ejemplo n.º 3
0
 public void errMsgOrIen_Null()
 {
     VistaUtils.errMsgOrIen(null);
 }
Ejemplo n.º 4
0
        public void errMsgOrIen()
        {
            string response = "7008";

            Assert.AreEqual(response, VistaUtils.errMsgOrIen(response));
        }