public void RemoveOffsetVTest()
        {
            PDFTransformStyle target = new PDFTransformStyle(); // TODO: Initialize to an appropriate value

            target.RemoveOffsetV();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void SkewYTest()
        {
            PDFTransformStyle target   = new PDFTransformStyle(); // TODO: Initialize to an appropriate value
            float             expected = 0F;                      // TODO: Initialize to an appropriate value
            float             actual;

            target.SkewY = expected;
            actual       = target.SkewY;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void PDFTransformStyleConstructorTest()
        {
            PDFTransformStyle target = new PDFTransformStyle();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }