public void DescendingIndexSegmentToString()
        {
            var segment = new IndexSegment("othercolumn", JET_coltyp.Bit, false, false);

            Assert.AreEqual("-othercolumn(Bit)", segment.ToString());
        }
        public void AscendingIndexSegmentToString()
        {
            var segment = new IndexSegment("column", JET_coltyp.IEEEDouble, true, false);

            Assert.AreEqual("+column(IEEEDouble)", segment.ToString());
        }