Loading android/pandora/test/main.py +2 −3 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import avatar.cases.le_security_test import avatar.cases.security_test import gatt_test import hfpclient_test import pairing.smp_test as smp_test from pairing import _test_class_list as _pairing_test_class_list import sdp_test _TEST_CLASSES_LIST = [ Loading @@ -33,11 +33,10 @@ _TEST_CLASSES_LIST = [ avatar.cases.le_security_test.LeSecurityTest, a2dp_test.A2dpTest, sdp_test.SdpTest, smp_test.SmpTest, gatt_test.GattTest, asha_test.AshaTest, hfpclient_test.HfpClientTest, ] ] + _pairing_test_class_list def _parse_cli_args() -> Tuple[Namespace, List[str]]: Loading android/pandora/test/pairing/__init__.py 0 → 100644 +19 −0 Original line number Diff line number Diff line # Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pairing.smp_test import SmpTest _test_class_list = [ SmpTest, ] Loading
android/pandora/test/main.py +2 −3 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import avatar.cases.le_security_test import avatar.cases.security_test import gatt_test import hfpclient_test import pairing.smp_test as smp_test from pairing import _test_class_list as _pairing_test_class_list import sdp_test _TEST_CLASSES_LIST = [ Loading @@ -33,11 +33,10 @@ _TEST_CLASSES_LIST = [ avatar.cases.le_security_test.LeSecurityTest, a2dp_test.A2dpTest, sdp_test.SdpTest, smp_test.SmpTest, gatt_test.GattTest, asha_test.AshaTest, hfpclient_test.HfpClientTest, ] ] + _pairing_test_class_list def _parse_cli_args() -> Tuple[Namespace, List[str]]: Loading
android/pandora/test/pairing/__init__.py 0 → 100644 +19 −0 Original line number Diff line number Diff line # Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pairing.smp_test import SmpTest _test_class_list = [ SmpTest, ]