public void TestByteFormat()
        {
            byte?  d;
            string v;

            d = null;
            v = SqlFormat.ByteFormat(d);
            AssertAreEqual(v, "NULL", "Byte? null");

            d = 145;
            v = SqlFormat.ByteFormat(d);
            AssertAreEqual(v, "145", "Byte 145");

            v = SqlFormat.ByteFormat(byte.MinValue, false);
            AssertAreEqual(v, "0", "Byte min non null");

            v = SqlFormat.ByteFormat(byte.MaxValue, false);
            AssertAreEqual(v, "0", "Byte min non null");

            v = SqlFormat.ByteFormat(byte.MinValue, true);
            AssertAreEqual(v, "NULL", "Byte min null");
        }