Merge "Reporting docker deployment improvement"
[releng.git] / utils / test / reporting / reporting / tests / unit / utils / test_utils.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016 Orange 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 import logging
11 import unittest
12
13 from reporting.utils import reporting_utils
14
15
16 class reportingUtilsTesting(unittest.TestCase):
17
18     logging.disable(logging.CRITICAL)
19
20     def setUp(self):
21         self.test = reporting_utils
22
23     def test_foo(self):
24         self.assertTrue(0 < 1)
25
26
27 if __name__ == "__main__":
28     unittest.main(verbosity=2)