Update Xtesting to 0.98
[functest.git] / functest / tests / unit / vnf / ims / test_cloudify_ims.py
1 #!/usr/bin/env python
2
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7
8 # pylint: disable=missing-docstring
9
10 import logging
11 import unittest
12
13
14 class CloudifyImsTesting(unittest.TestCase):
15     pass
16
17
18 if __name__ == "__main__":
19     logging.disable(logging.CRITICAL)
20     unittest.main(verbosity=2)