tacker/tacker/tests/compliance/sol002/base.py
Tsukasa Inoue e71fd7667c Apply Robot Framework for testing
Support ETSI NFV compliant automated testing by using
the Robot Framework and ETSI NFV-TST API test codes.

Implements: blueprint use-robot-api-tests
Spec: https://specs.openstack.org/openstack/tacker-specs/specs/victoria/use_robot_api_tests.html
Change-Id: Ic2fe5e3eb8b279f9a9d193a00e0cf9ac97fe75a2
2022-03-18 04:30:45 +00:00

25 lines
837 B
Python

# Copyright (C) 2022 NEC, Corp.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from tacker.tests.compliance import base
class BaseComplSolTest(base.BaseComplTest):
@classmethod
def setUpClass(cls):
cls.sol = 'SOL002'
super(BaseComplSolTest, cls).setUpClass()