chromium/dbus/values_util_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.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "dbus/values_util.h"

#include <stddef.h>
#include <stdint.h>

#include <cmath>
#include <memory>
#include <utility>
#include <vector>

#include "base/json/json_writer.h"
#include "base/values.h"
#include "dbus/message.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace dbus {

TEST(ValuesUtilTest, PopBasicTypes) {}

TEST(ValuesUtilTest, PopVariant) {}

// Pop extremely large integers which cannot be precisely represented in
// double.
TEST(ValuesUtilTest, PopExtremelyLargeIntegers) {}

TEST(ValuesUtilTest, PopIntArray) {}

TEST(ValuesUtilTest, PopStringArray) {}

TEST(ValuesUtilTest, PopStruct) {}

TEST(ValuesUtilTest, PopStringToVariantDictionary) {}

TEST(ValuesUtilTest, PopDictionaryWithDottedStringKey) {}

TEST(ValuesUtilTest, PopDoubleToIntDictionary) {}

TEST(ValuesUtilTest, AppendBasicTypes) {}

TEST(ValuesUtilTest, AppendBasicTypesAsVariant) {}

TEST(ValuesUtilTest, AppendValueDataBasicTypes) {}

TEST(ValuesUtilTest, AppendValueDataAsVariantBasicTypes) {}

TEST(ValuesUtilTest, AppendDictionary) {}

TEST(ValuesUtilTest, AppendDictionaryAsVariant) {}

TEST(ValuesUtilTest, AppendList) {}

TEST(ValuesUtilTest, AppendListAsVariant) {}

}  // namespace dbus