Rico Lin | aa2ae04 | 2024-06-25 20:32:17 +0800 | [diff] [blame] | 1 | # SPDX-License-Identifier: Apache-2.0 |
2 | |||||
3 | """Base classes for our unit tests.""" | ||||
4 | from unittest import mock | ||||
5 | |||||
6 | import testtools | ||||
7 | |||||
8 | |||||
9 | @mock.patch("neutron.common.config") | ||||
10 | class TestCase(testtools.TestCase): | ||||
11 | """Test case base class for all unit tests.""" | ||||
12 | |||||
13 | pass |