Merge "Bugfix: task_id parameter from API can not pass to yardstick core"
[yardstick.git] / tests / unit / network_services / collector / test_publisher.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016-2017 Intel Corporation
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 # Unittest for yardstick.network_services.collector.publisher
19
20 from __future__ import absolute_import
21 import unittest
22
23 from yardstick.network_services.collector import publisher
24
25
26 class PublisherTestCase(unittest.TestCase):
27
28     def setUp(self):
29         self.test_publisher = publisher.Publisher()
30
31     def test_successful_init(self):
32         pass
33
34     def test_unsuccessful_init(self):
35         pass
36
37     def test_start(self):
38         self.assertIsNone(self.test_publisher.start())
39
40     def test_stop(self):
41         self.assertIsNone(self.test_publisher.stop())