Parse null

This commit is contained in:
Vladimir Grichina
2019-01-06 02:31:38 -08:00
parent afaca3b128
commit e4757490a7
2 changed files with 18 additions and 7 deletions

View File

@@ -124,6 +124,10 @@ export class StringConversionTests {
return this.roundripTest('{"val":false}');
}
static shouldHandleNull(): bool {
return this.roundripTest('{"val":null}');
}
static shouldHandleString(): bool {
return this.roundripTest('{"str":"foo"}');
}