Add support to the test case required by YARDSTICK-35
[yardstick.git] / yardstick / vTC / apexlake / experimental_framework / benchmarks / test_benchmark.py
1 # Copyright (c) 2015 Intel Research and Development Ireland Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 from experimental_framework.benchmarks import benchmark_base_class as base
17
18
19 class TestBenchmark(base.BenchmarkBaseClass):
20
21     def init(self):
22         pass
23
24     def finalize(self):
25         pass
26
27     def get_features(self):
28         features = dict()
29         features['description'] = 'Test Benchmark'
30         features['parameters'] = list()
31         features['allowed_values'] = dict()
32         features['default_values'] = dict()
33         return features
34
35     def run(self):
36         return dict()