Back to project page couchbase-lite-android.
The source code is released under:
Apache License
If you think the Android project couchbase-lite-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.couchbase.lite; /* w w w. j a v a 2 s .c om*/ import junit.framework.Assert; public class MiscTest extends LiteTestCase { public void testUnquoteString() { String testString = "attachment; filename=\"attach\""; String expected = "attachment; filename=attach"; String result = com.couchbase.lite.Misc.unquoteString(testString); Assert.assertEquals(expected, result); } }