Add openstack test case
[stor4nfv.git] / stor4nfv_tests / stor4nfv_os.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2018 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10
11 import sys
12 import os
13 import logging
14
15 from xtesting.core import feature
16
17 logger = logging.getLogger(__name__)
18
19
20 class OsStor4nfvTest(feature.Feature):
21
22     def execute(self):
23         logger.info("Stor4NFV OpenStack test suite")
24         self.result = 100
25         return feature.Feature.EX_OK