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