Esempio n. 1
0
        public void ReadStationsFromDb()
        {
            bool           expect   = true;
            bool           actual   = false;
            List <Station> stations = StationHandler.station(null);

            stations.Sort();

            if (stations[0].stationId == 0001)
            {
                actual = true;
            }
            Assert.AreEqual(expect, actual);
        }