| 78 | } |
| 79 | |
| 80 | void GenerateDeepJsonDict(TStringStream& stream, ui64 depth) { |
| 81 | for (ui64 i = 0; i < depth - 1; ++i) { |
| 82 | stream << "{\"key\":"; |
| 83 | } |
| 84 | stream << "{}"; |
| 85 | for (ui64 i = 0; i < depth - 1; ++i) { |
| 86 | stream << "}"; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | Y_UNIT_TEST_SUITE(TJsonReaderTest) { |
| 91 | Y_UNIT_TEST(JsonReformatTest) { |