1#============================================================================
2# This library is free software; you can redistribute it and/or
3# modify it under the terms of version 2.1 of the GNU Lesser General Public
4# License as published by the Free Software Foundation.
5#
6# This library is distributed in the hope that it will be useful,
7# but WITHOUT ANY WARRANTY; without even the implied warranty of
8# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9# Lesser General Public License for more details.
10#
11# You should have received a copy of the GNU Lesser General Public
12# License along with this library; If not, see <http://www.gnu.org/licenses/>.
13#============================================================================
14# Copyright (C) 2009 flonatel GmbH & Co. KG
15#============================================================================
16
17import unittest
18
19suite = unittest.TestSuite([])
20
21if __name__ == "__main__":
22    testresult = unittest.TextTestRunner(verbosity=3).run(suite)
23
24