public void FillStyle_Test()
        {
            PDFNoBrush target = new PDFNoBrush();
            FillType   actual;

            actual = target.FillStyle;
            Assert.AreEqual(FillType.None, actual);
        }
        public void PDFNoBrushConstructor_Test()
        {
            PDFNoBrush target = new PDFNoBrush();

            Assert.IsNotNull(target);
        }