chromium/mojo/public/cpp/base/values_unittest.cc

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

#include <string>
#include <utility>

#include "base/test/gtest_util.h"
#include "base/values.h"
#include "mojo/public/cpp/base/values_mojom_traits.h"
#include "mojo/public/cpp/bindings/lib/validation_context.h"
#include "mojo/public/cpp/bindings/lib/validation_errors.h"
#include "mojo/public/cpp/test_support/test_utils.h"
#include "mojo/public/mojom/base/values.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace mojo_base {

TEST(ValuesStructTraitsTest, NullValue) {}

TEST(ValuesStructTraitsTest, BoolValue) {}

TEST(ValuesStructTraitsTest, IntValue) {}

TEST(ValuesStructTraitsTest, DoubleValue) {}

TEST(ValuesStructTraitsTest, StringValue) {}

TEST(ValuesStructTraitsTest, BinaryValue) {}

TEST(ValuesStructTraitsTest, DictionaryValue) {}

TEST(ValuesStructTraitsTest, ListValue) {}

// A deeply nested base::Value should trigger a deserialization error.
TEST(ValuesStructTraitsTest, DeeplyNestedValue) {}

}  // namespace mojo_base