Beispiel #1
0
        public virtual void TestUnquoteString()
        {
            string testString = "attachment; filename=\"attach\"";
            string expected   = "attachment; filename=attach";
            string result     = Misc.UnquoteString(testString);

            NUnit.Framework.Assert.AreEqual(expected, result);
        }