From e2194df28cd83d0cdeac579b2b759b542c3a5afe Mon Sep 17 00:00:00 2001 From: Mrudulabaj Date: Fri, 5 May 2017 18:17:14 -0700 Subject: [PATCH] Update HowToWriteGoodTestCases.rst --- HowToWriteGoodTestCases.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/HowToWriteGoodTestCases.rst b/HowToWriteGoodTestCases.rst index 53cf326..9227abd 100644 --- a/HowToWriteGoodTestCases.rst +++ b/HowToWriteGoodTestCases.rst @@ -185,6 +185,22 @@ __ http://robotframework.org/robotframework/latest/libraries/BuiltIn.html#Run%20 Documentation ============= +- Settings + +Is used to import available keyword libraries or resources (resources are plain text files like test suites, but without test cases) and define possible setup and teardown keywords. + +- Variables + +Is used to define available robot variables with their default values, or override variables defined in imported resources. + +- Test Cases + +Is used to define runnable tests cases, which are made of test clauses calling test keywords. + +- Keywords + +Is used to define new user keywords, which may re-use existing keywords from imported libraries or resource files. + Test suite documentation ------------------------