public void PointsToTwipsTest()
        {
            const float points   = 1F;
            const float expected = 20F;
            float       actual   = ConvertEx.PointsToTwips(points);

            Assert.AreEqual(expected, actual);
        }