1 
2 #pragma once
3 
4 #include "test/headless/get_options.h"
5 #include "test/headless/headless.h"
6 
7 namespace bluetooth {
8 namespace test {
9 namespace headless {
10 
11 class Pairing : public HeadlessTest<int> {
12 public:
Pairing(const bluetooth::test::headless::GetOpt & options)13   Pairing(const bluetooth::test::headless::GetOpt& options) : HeadlessTest<int>(options) {}
14   int Run() override;
15 };
16 
17 }  // namespace headless
18 }  // namespace test
19 }  // namespace bluetooth
20