summaryrefslogtreecommitdiffstats
path: root/chromium/base/android/radio_utils_unittest.cc
blob: e5dc3df0ca692929ee397f7b3911b1d1c6a19901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2022 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/android/radio_utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {

namespace android {

TEST(RadioUtilsTest, ConnectionType) {
  RadioUtils::OverrideForTesting radio_utils_test;

  radio_utils_test.SetConnectionTypeForTesting(RadioConnectionType::kUnknown);
  EXPECT_EQ(RadioConnectionType::kUnknown, RadioUtils::GetConnectionType());

  radio_utils_test.SetConnectionTypeForTesting(RadioConnectionType::kCell);
  EXPECT_EQ(RadioConnectionType::kCell, RadioUtils::GetConnectionType());

  radio_utils_test.SetConnectionTypeForTesting(RadioConnectionType::kWifi);
  EXPECT_EQ(RadioConnectionType::kWifi, RadioUtils::GetConnectionType());
}

}  // namespace android
}  // namespace base