chromium/base/json/json_parser_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/json/json_parser.h"

#include <stddef.h>

#include <memory>
#include <optional>

#include "base/json/json_reader.h"
#include "base/memory/ptr_util.h"
#include "base/values.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace internal {

class JSONParserTest : public testing::Test {};

TEST_F(JSONParserTest, NextChar) {}

TEST_F(JSONParserTest, ConsumeString) {}

TEST_F(JSONParserTest, ConsumeList) {}

TEST_F(JSONParserTest, ConsumeDictionary) {}

TEST_F(JSONParserTest, ConsumeLiterals) {}

TEST_F(JSONParserTest, ConsumeNumbers) {}

TEST_F(JSONParserTest, ErrorMessages) {}

}  // namespace internal
}  // namespace base