Ejemplo n.º 1
0
        public void Test1()
        {
            ShapeCache cache = new ShapeCache();

            cache.Load();

            int    expectedId = 1;
            IShape clone1     = cache.Get(expectedId);

            clone1.Id = 100;
            clone1    = cache.Get(expectedId);
            Assert.AreEqual(expectedId, clone1.Id);
        }