mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Don't append character to std::string.
This commit is contained in:
parent
5347efb967
commit
db5cc4db27
11 changed files with 84 additions and 68 deletions
|
@ -179,6 +179,16 @@ void JsonTest::testDecode()
|
|||
const String* s = downcast<String>(list->get(0));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("\"\\/\b\f\n\r\t"), s->s());
|
||||
}
|
||||
{
|
||||
// string: literal + escaped chars.
|
||||
SharedHandle<ValueBase> r =
|
||||
json::decode("[\"foo\\u0024b\\u00A2\\u20ACbaz\"]");
|
||||
const List* list = downcast<List>(r);
|
||||
CPPUNIT_ASSERT(list);
|
||||
const String* s = downcast<String>(list->get(0));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("foo$b¢€baz"), s->s());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void JsonTest::testDecode_error()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue