blob: de6835c0515a348fc4f08f447bf35a7c7443a558 [file] [log] [blame]
#!/usr/bin/env python3
#
# Copyright 2018 - The Android Open Source Project
#
# 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
#
# http://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.
import sys
import unittest
import rpc_client_test
import rpc_connection_test
import sl4a_manager_test
import sl4a_session_test
def compile_suite():
test_classes_to_run = [
rpc_client_test.RpcClientTest,
rpc_connection_test.RpcConnectionTest,
sl4a_manager_test.Sl4aManagerFactoryTest,
sl4a_manager_test.Sl4aManagerTest,
sl4a_session_test.Sl4aSessionTest,
]
loader = unittest.TestLoader()
suites_list = []
for test_class in test_classes_to_run:
suite = loader.loadTestsFromTestCase(test_class)
suites_list.append(suite)
big_suite = unittest.TestSuite(suites_list)
return big_suite
if __name__ == "__main__":
# This is the entry point for running all SL4A Lib unit tests.
runner = unittest.TextTestRunner()
results = runner.run(compile_suite())
sys.exit(not results.wasSuccessful())