public virtual void UnquoteIdentifier()
        {
            HsqlCommandBuilder testSubject = new HsqlCommandBuilder();
            string quotedIdentifier = "\"foo\"";

            string expected = "foo";
            string actual = testSubject.UnquoteIdentifier(quotedIdentifier);

            Assert.AreEqual(expected, actual);
        }