Exemple #1
0
        public void VectorTile_AddData()
        {
            VectorTile v = new VectorTile(9, 112, 195);

            byte[] bytes = File.ReadAllBytes(@".\data\9.112.195.pbf");
            v.SetData(bytes);
            v.AddData(bytes);
            Assert.IsFalse(v.Empty());
            Assert.IsTrue(v.Painted());
            CollectionAssert.AreEquivalent(new List <string>()
            {
                "world", "world"
            }, v.Names().ToList());
            byte[] actual = v.GetData();
            Assert.AreEqual(bytes.Length * 2, actual.Length);
        }
 public void VectorTile_AddData()
 {
     VectorTile v = new VectorTile(9,112,195);
     byte[] bytes = File.ReadAllBytes(@".\data\9.112.195.pbf");
     v.SetData(bytes);
     v.AddData(bytes);
     Assert.IsFalse(v.Empty());
     Assert.IsTrue(v.Painted());
     CollectionAssert.AreEquivalent(new List<string>() { "world", "world" }, v.Names().ToList());
     byte[] actual = v.GetData();
     Assert.AreEqual(bytes.Length * 2, actual.Length);
 }