1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
*** Settings ***
Test Setup Prepare Test
Test Teardown Cleanup Test
Force Tags CSGplus
Library OperatingSystem
Library String
Library lib/VorpatestLibrary.py
*** Variables **
${DATADIR} %{VORPATEST_ROOT_DIR}${/}data${/}CSG
*** Test Cases ***
example021.csg
Run Test
example022.csg
Run Test
example023.csg
Run Test
example024.csg
Run Test
*** Keywords ***
Run Test
[Arguments] ${input_name}=${TEST NAME} @{options}
[Documentation] Computes a CSG operation
... The name of the input file is taken from the test name.
run command compute_CSG @{options} ${DATADIR}${/}${input_name}
|