public void TestUnicodeFontWriteableBitmapAdapter() { UnicodeFontFactory factory = new UnicodeFontFactory(Install, Container); ImageSource text = factory.GetText <ImageSource>(0, "This is a test", 0); Guard.AssertIsNotNull(text, "Unicode Font was not created."); }
public void TestUnicodeFontBitmapAdapter() { var factory = new UnicodeFontFactory(Install, Container); var text = factory.GetText <Bitmap>(0, "This is a test", 0); Guard.RequireIsNotNull(text, "Unicode Font was not created."); }
public void TestUnicodeFontBitmapAdapter() { UnicodeFontFactory factory = new UnicodeFontFactory(Install, Container); Bitmap text = factory.GetText<Bitmap>(0, "This is a test", 0); Guard.AssertIsNotNull(text, "Unicode Font was not created."); }
public void TestUnicodeFontWriteableBitmapAdapter() { var factory = new UnicodeFontFactory(Install, Container); var text = factory.GetText<ImageSource>(0, "This is a test", 0); Guard.RequireIsNotNull(text, "Unicode Font was not created."); }