public void TestTexmapsWriteableBitmapAdapter()
        {
            TexmapFactory factory = new TexmapFactory(Install, Container);
            ImageSource   texmap  = factory.GetTexmap <ImageSource>(1);

            Guard.AssertIsNotNull(texmap, "Texmap 0 was not found.");
        }
Beispiel #2
0
        public void TestTexmapsBitmapAdapter()
        {
            var factory = new TexmapFactory(Install, Container);
            var texmap  = factory.GetTexmap <Bitmap>(1);

            Guard.RequireIsNotNull(texmap, "Texmap 0 was not found.");
        }
Beispiel #3
0
        public void TestTexmapsBitmapAdapter()
        {
            TexmapFactory factory = new TexmapFactory(Install, Container);
            Bitmap        texmap  = factory.GetTexmap <Bitmap>(1);

            Guard.AssertIsNotNull(texmap, "Texmap 0 was not found.");
        }
        public void TestTexmapsBitmapAdapter()
        {
            TexmapFactory factory = new TexmapFactory(Install, Container);
            Bitmap texmap = factory.GetTexmap<Bitmap>(1);

            Guard.AssertIsNotNull(texmap, "Texmap 0 was not found.");
        }
        public void TestTexmapsWriteableBitmapAdapter()
        {
            TexmapFactory factory = new TexmapFactory(Install, Container);
            ImageSource texmap = factory.GetTexmap<ImageSource>(0);

            Guard.AssertIsNotNull(texmap, "Texmap 0 was not found.");
        }
        public void TestTexmapsWriteableBitmapAdapter()
        {
            var factory = new TexmapFactory(Install, Container);
            var texmap = factory.GetTexmap<ImageSource>(1);

            Guard.RequireIsNotNull(texmap, "Texmap 0 was not found.");
        }