// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/memory/ref_counted.h" #include "base/test/test_simple_task_runner.h" #include "device/bluetooth/bluetooth_adapter.h" #include "device/bluetooth/bluetooth_adapter_mac.h" #include "testing/gtest/include/gtest/gtest.h" namespace device { class BluetoothAdapterMacTest : public testing::Test { public: BluetoothAdapterMacTest() : ui_task_runner_(new base::TestSimpleTaskRunner()), adapter_(new BluetoothAdapterMac()), adapter_mac_(static_cast(adapter_.get())) { adapter_mac_->InitForTest(ui_task_runner_); } protected: scoped_refptr ui_task_runner_; scoped_refptr adapter_; BluetoothAdapterMac* adapter_mac_; }; TEST_F(BluetoothAdapterMacTest, Poll) { EXPECT_FALSE(ui_task_runner_->GetPendingTasks().empty()); } } // namespace device