/**
  *
  *
  *
  */
 private static string finalPoint(string text)
 {
     text = text.Trim();
     if (text.Substring(text.Length - 1, 1) == ".")
     {
         return(text + FirstTestCase.saltoLinea());
     }
     else
     {
         return(text + " ");
     }
 }
        /**
         *
         *
         *
         */
        private static string doblePoint(string text)
        {
            int posicion = text.Trim().IndexOf(":");

            if (posicion == -1) //no Existe
            {
                return(text);
            }
            else
            {
                if (posicion == text.Trim().Length - 1)
                {
                    return(text + FirstTestCase.saltoLinea());
                }
                else
                {
                    return(text);
                }
            }
        }