chromium/base/json/json_value_converter_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_value_converter.h"

#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <vector>

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

namespace base {
namespace {

// Very simple messages.
struct SimpleMessage {};

// For nested messages.
struct NestedMessage {};

}  // namespace

TEST(JSONValueConverterTest, ParseSimpleMessage) {}

TEST(JSONValueConverterTest, ParseNestedMessage) {}

TEST(JSONValueConverterTest, ParseFailures) {}

TEST(JSONValueConverterTest, ParseWithMissingFields) {}

TEST(JSONValueConverterTest, EnumParserFails) {}

TEST(JSONValueConverterTest, RepeatedValueErrorInTheMiddle) {}

}  // namespace base