StupidJsonDecodeTest: add some extra test vectors

This commit is contained in:
Dylan K. Taylor 2019-10-01 13:25:20 +01:00
parent d0d61597c7
commit 8a6381c3fa

View File

@ -41,7 +41,9 @@ class StupidJsonDecodeTest extends TestCase{
["NULL", null],
['["\",,\"word","a\",,\"word2",]', ['",,"word', 'a",,"word2', '']],
['["\",,\"word","a\",,\"word2",""]', ['",,"word', 'a",,"word2', '']],
['["Hello,, PocketMine"]', ['Hello,, PocketMine']]
['["Hello,, PocketMine"]', ['Hello,, PocketMine']],
['[,]', ['', '']],
['[]', []]
];
}