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