Remove chromeos==0 blacklist for test_isolation_mode.
[chromium-blink-merge.git] / device / bluetooth / test / bluetooth_test_android.h
blob13b95551152d6f7bbd8de4f2a7b4cbf50898bd5e
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"
11 namespace device {
13 class BluetoothAdapterAndroid;
15 // Android implementation of BluetoothTestBase.
16 class BluetoothTestAndroid : public BluetoothTestBase {
17 public:
18 BluetoothTestAndroid();
19 ~BluetoothTestAndroid() override;
21 // Test overrides:
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;
33 } // namespace device
35 #endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_ANDROID_H_