chromium/google_apis/gcm/base/mcs_util_unittest.cc

// Copyright 2013 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 "google_apis/gcm/base/mcs_util.h"

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

#include <memory>

#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace gcm {
namespace {

const uint64_t kAuthId =;
const uint64_t kAuthToken =;

// Build a login request protobuf.
TEST(MCSUtilTest, BuildLoginRequest) {}

// Test building a protobuf and extracting the tag from a protobuf.
TEST(MCSUtilTest, ProtobufToTag) {}

// Test getting and setting persistent ids.
TEST(MCSUtilTest, PersistentIds) {}

// Test getting and setting stream ids.
TEST(MCSUtilTest, StreamIds) {}

}  // namespace
}  // namespace gcm