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) 14 : HeadlessTest<int>(options) {} 15 int Run() override; 16 }; 17 18 } // namespace headless 19 } // namespace test 20 } // namespace bluetooth 21