tests: add test on function string_base16_decode with a char >= 0xA0

This commit is contained in:
Sébastien Helleu 2020-05-21 09:55:40 +02:00
parent 66d4590dab
commit a997893cfe

View File

@ -1682,6 +1682,7 @@ TEST(CoreString, Base16)
{ { "", "" },
{ "abcdefgh", "6162636465666768" },
{ "this is a *test*", "746869732069732061202A746573742A" },
{ "this is a *test*\xAA", "746869732069732061202A746573742AAA" },
{ NULL, NULL } };