Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
register.py
00001 """ 00002 Copyright 2019 ARM Limited 00003 Licensed under the Apache License, Version 2.0 (the "License"); 00004 you may not use this file except in compliance with the License. 00005 You may obtain a copy of the License at 00006 00007 http://www.apache.org/licenses/LICENSE-2.0 00008 00009 Unless required by applicable law or agreed to in writing, software 00010 distributed under the License is distributed on an "AS IS" BASIS, 00011 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00012 See the License for the specific language governing permissions and 00013 limitations under the License. 00014 """ 00015 00016 # pylint: disable=missing-docstring,useless-super-delegation 00017 # pylint: disable=method-hidden,relative-import 00018 00019 from pelion_helper import PelionBase 00020 00021 00022 class Testcase(PelionBase): 00023 def __init__(self): 00024 PelionBase.__init__(self, 00025 name="register", 00026 title="Example application can perform basic CoAP operation (GET)", 00027 status="released", 00028 type="acceptance", 00029 component=["mbed_cloud_client_example"]) 00030 def setup(self): 00031 super(Testcase, self).setup() 00032 00033 def case(self): 00034 self.verify_registration("registered") 00035 00036 def teardown(self): 00037 self.connect_api.stop_notifications()
Generated on Fri Jul 15 2022 10:25:13 by
1.7.2