public void UrlSafeStopId_Blanks()
        {
            string stopId   = "North Station";
            string expected = "NorthStation";
            string actual   = MbtaRtLoader.UrlSafeStopId(stopId);

            Assert.AreEqual(expected, actual);
        }
        public void UrlSafeStopId_SlashesAndBlanks()
        {
            string stopId   = "Littleton / Rte 495";
            string expected = "LittletonSlashRte495";
            string actual   = MbtaRtLoader.UrlSafeStopId(stopId);

            Assert.AreEqual(expected, actual);
        }
        public void UrlSafeStopId_NoFunnyCharacters()
        {
            string stopId   = "Belmont";
            string expected = stopId;
            string actual   = MbtaRtLoader.UrlSafeStopId(stopId);

            Assert.AreEqual(expected, actual);
        }