blob: 4cfa93dc6f886eaae5d6574f4ba157d5e30d41bb [file] [log] [blame]
tturney390ec862016-11-23 15:20:47 -08001#!/usr/bin/env python3.4
2#
3# Copyright 2016 - The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17import unittest
18
19from acts import utils
20from acts.test_utils.bt import BleEnum
21from acts.test_utils.bt import BluetoothBaseTest
22from acts.test_utils.bt import BluetoothCarHfpBaseTest
23from acts.test_utils.bt import BtEnum
24from acts.test_utils.bt import GattConnectedBaseTest
25from acts.test_utils.bt import GattEnum
26from acts.test_utils.bt import bt_contacts_utils
27from acts.test_utils.bt import bt_gatt_utils
28from acts.test_utils.bt import bt_test_utils
29from acts.test_utils.bt import native_bt_test_utils
30
31from acts.test_utils.car import car_bt_utils
32from acts.test_utils.car import car_media_utils
33from acts.test_utils.car import car_telecom_utils
34from acts.test_utils.car import tel_telecom_utils
35
36from acts.test_utils.net import connectivity_const
37from acts.test_utils.net import connectivity_const
38
39from acts.test_utils.tel import TelephonyBaseTest
40from acts.test_utils.tel import tel_atten_utils
41from acts.test_utils.tel import tel_data_utils
42from acts.test_utils.tel import tel_defines
43from acts.test_utils.tel import tel_lookup_tables
44from acts.test_utils.tel import tel_subscription_utils
45from acts.test_utils.tel import tel_test_utils
46from acts.test_utils.tel import tel_video_utils
47from acts.test_utils.tel import tel_voice_utils
48
49from acts.test_utils.wifi import wifi_aware_const
50from acts.test_utils.wifi import wifi_constants
51from acts.test_utils.wifi import wifi_test_utils
52
53
54class ActsImportTestUtilsTest(unittest.TestCase):
55 """This test class has unit tests for the implementation of everything
56 under acts.test_utils.*
57 """
58
59 def test_import_successful(self):
60 """ Test to return true if all imports were successful.
61
62 This test will fail if any import was unsuccessful.
63 """
64 self.assertTrue(True)
65
66
67if __name__ == "__main__":
68 unittest.main()