Report: Small fixes
[csit.git] / tests / __init__.robot
1 # Copyright (c) 2021 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Library | resources.libraries.python.model.export_json
16 |
17 | Suite Setup | Global Suite Setup
18 | Suite Teardown | Global Suite Teardown
19
20 *** Keywords ***
21 | Global Suite Setup
22 | | [Documentation]
23 | | ... | Perform initializations needed for any subsequent suite.
24 | | ... | Currently only a minimal JSON export of time.
25 | |
26 | | Start Suite Setup Export
27 | | # Nothing explicit here, implicitly a place to find global start timestamp.
28 | | Finalize Suite Setup Export
29
30 | Global Suite Teardown
31 | | [Documentation]
32 | | ... | Perform cleanup needed after any preceding suite.
33 | | ... | Currently only a minimal JSON export of time.
34 | |
35 | | Start Suite Teardown Export
36 | | # Nothing explicit here, implicitly a place to find global end timestamp.
37 | | Finalize Suite Teardown Export