1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_ANDROID_H_
6 #define DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_ANDROID_H_
8 #include "base/android/scoped_java_ref.h"
9 #include "device/bluetooth/test/bluetooth_test.h"
13 class BluetoothAdapterAndroid
;
15 // Android implementation of BluetoothTestBase.
16 class BluetoothTestAndroid
: public BluetoothTestBase
{
18 BluetoothTestAndroid();
19 ~BluetoothTestAndroid() override
;
22 void SetUp() override
;
24 // BluetoothTestBase overrides:
25 void InitWithDefaultAdapter() override
;
26 void InitWithoutDefaultAdapter() override
;
27 void InitWithFakeAdapter() override
;
30 // Defines common test fixture name. Use TEST_F(BluetoothTest, YourTestName).
31 typedef BluetoothTestAndroid BluetoothTest
;
35 #endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_ANDROID_H_