1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 # 5 6 """This dummy module import all unit tests. 7 8 This file is named as xxx_unittests.py so that it will not get picked up 9 by the autotest-wide unittest running tool (utils/unittest_suite.py). 10 """ 11 12 import unittest 13 14 from firmware_summary_unittest import * 15 from geometry_unittest import * 16 from mtb_unittest import * 17 from validators_unittest import * 18 19 20 if __name__ == '__main__': 21 unittest.main() 22