mirror of https://github.com/ARMmbed/mbed-os.git
66 lines
2.3 KiB
Plaintext
66 lines
2.3 KiB
Plaintext
"""
|
|
Copyright (c) 2017, Arm Limited and affiliates.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
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.
|
|
"""
|
|
import os,sys
|
|
# ensure that test/ directory is first choice for imports
|
|
test_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
|
|
if not test_dir in sys.path:
|
|
sys.path.insert(0, test_dir)
|
|
from GenericTestcase import Bench
|
|
from Error import TestStepFail
|
|
|
|
class Testcase(Bench):
|
|
def __init__(self):
|
|
Bench.__init__(self, name = "template", # Name should be the same as the filename
|
|
title = "TITLE",
|
|
status = "development",
|
|
type = "TYPE",
|
|
subtype = "",
|
|
execution = {
|
|
"skip": {
|
|
"value": False,
|
|
"reason": ""
|
|
}
|
|
},
|
|
author = "Valtteri Erkkila",
|
|
purpose = "",
|
|
feature = [""],
|
|
component = ["MAC"],
|
|
requirements = {
|
|
"duts": {
|
|
'*': {
|
|
"count":2, # Count must reflect the amount of specified devices below
|
|
"type": "hardware",
|
|
"application":{ "name":"generalTestApplication", "version": "1.0"},
|
|
"rf_channel": 11
|
|
},
|
|
"1":{"nick": "First"},
|
|
"2":{"nick": "Second"}
|
|
}}
|
|
)
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def case(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
if __name__=='__main__':
|
|
sys.exit( Testcase().run() )
|