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
8This file is named as xxx_unittests.py so that it will not get picked up
9by the autotest-wide unittest running tool (utils/unittest_suite.py).
10"""
11
12import unittest
13
14from firmware_summary_unittest import *
15from geometry_unittest import *
16from mtb_unittest import *
17from validators_unittest import *
18
19
20if __name__ == '__main__':
21    unittest.main()
22