public void TestAsciiFontWriteableBitmapAdapter()
        {
            ASCIIFontFactory factory = new ASCIIFontFactory(Install, Container);
            ImageSource      text    = factory.GetText <ImageSource>(0, "This is a test", 0);

            Guard.AssertIsNotNull(text, "ASCII Font was not created.");
        }
        public void TestAsciiFontWriteableBitmapAdapter()
        {
            var factory = new ASCIIFontFactory(Install, Container);
            var text = factory.GetText<ImageSource>(0, "This is a test", 0);

            Guard.RequireIsNotNull(text, "ASCII Font was not created.");
        }
Beispiel #3
0
        public void TestAsciiFontBitmapAdapter()
        {
            var factory = new ASCIIFontFactory(Install, Container);
            var text    = factory.GetText <Bitmap>(0, "This is a test", 0);

            Guard.RequireIsNotNull(text, "ASCII Font was not created.");
        }
 public void TestAsciiFontBitmapAdapter()
 {
     ASCIIFontFactory factory = new ASCIIFontFactory(Install, Container);
     Bitmap text = factory.GetText<Bitmap>(0, "This is a test", 0);
     Guard.AssertIsNotNull(text, "ASCII Font was not created.");
 }