Exemple #1
0
        public void PtPm2GetPartUrlFullContentMax()
        {
            Pm2 Pm2 = new Pm2(lat, lon, Pm2.Color.or, Pm2.Size.m, 100);

            string result = $"{Pm2.Lon.ToString().Replace(',', '.')}" +
                            $",{Pm2.Lat.ToString().Replace(',', '.')}," +
                            $"pm2orm";

            Assert.AreEqual(result, Pm2.GetPartUrl());
        }
Exemple #2
0
        public void PtPm2GetPartUrlFull()
        {
            Pm2 Pm2 = new Pm2(lat, lon, Pm2.Color.yw, Pm2.Size.l, 99);

            string result = $"{Pm2.Lon.ToString().Replace(',', '.')}" +
                            $",{Pm2.Lat.ToString().Replace(',', '.')}," +
                            $"pm2ywl99";

            Assert.AreEqual(result, Pm2.GetPartUrl());
        }
Exemple #3
0
        public void PtPm2GetPartUrlBlyw()
        {
            Pm2 Pm2 = new Pm2(lat, lon, Pm2.Color.blyw, Pm2.Size.m, 1);

            string result = $"{Pm2.Lon.ToString().Replace(',', '.')}" +
                            $",{Pm2.Lat.ToString().Replace(',', '.')}," +
                            $"pm2blywm1";

            Assert.AreEqual(result, Pm2.GetPartUrl());
        }
Exemple #4
0
        public void PtPm2GetPartUrlDefault()
        {
            Pm2 Pm2 = new Pm2(lat, lon);

            string result = $"{Pm2.Lon.ToString().Replace(',', '.')}" +
                            $",{Pm2.Lat.ToString().Replace(',', '.')}," +
                            $"pm2wtm";

            Assert.AreEqual(result, Pm2.GetPartUrl());
        }