27 lines
716 B
C++
27 lines
716 B
C++
// Copyright 2017 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "net/nqe/network_id.h"
|
|
|
|
#include <string>
|
|
|
|
#include "base/strings/string_number_conversions.h"
|
|
#include "net/base/network_change_notifier.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
namespace net::nqe::internal {
|
|
|
|
namespace {
|
|
|
|
TEST(NetworkIDTest, TestSerialize) {
|
|
nqe::internal::NetworkID network_id(NetworkChangeNotifier::CONNECTION_2G,
|
|
"test1", 2);
|
|
std::string serialized = network_id.ToString();
|
|
EXPECT_EQ(network_id, NetworkID::FromString(serialized));
|
|
}
|
|
|
|
} // namespace
|
|
|
|
} // namespace net::nqe::internal
|