#include <string>
#include "base/functional/bind.h"
#include "base/strings/utf_string_conversions.h"
#include "components/permissions/bluetooth_scanning_prompt_controller.h"
#include "components/permissions/mock_chooser_controller_view.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
NiceMock;
namespace permissions {
class BluetoothScanningPromptControllerTest : public testing::Test { … };
class BluetoothScanningPromptControllerWithDevicesAddedTest
: public BluetoothScanningPromptControllerTest { … };
TEST_F(BluetoothScanningPromptControllerTest, AddDevice) { … }
TEST_F(BluetoothScanningPromptControllerTest,
MultipleDevicesWithSameNameShowIds) { … }
TEST_F(BluetoothScanningPromptControllerTest, UpdateDeviceName) { … }
TEST_F(BluetoothScanningPromptControllerWithDevicesAddedTest,
InitialNoOptionsText) { … }
TEST_F(BluetoothScanningPromptControllerWithDevicesAddedTest,
AllowShouldCallEventHandler) { … }
TEST_F(BluetoothScanningPromptControllerWithDevicesAddedTest,
BlockShouldCallEventHandler) { … }
TEST_F(BluetoothScanningPromptControllerWithDevicesAddedTest,
CloseShouldCallEventHandler) { … }
}