Corrected the typo and moved tag to optional

This commit is contained in:
Ju-Hyoung Lee 2018-06-12 16:50:49 -07:00
Родитель 2d207b13e2
Коммит 17f67a695a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -121,13 +121,13 @@ Per Category, each XML file has VM name, Resource Group name, etc. We do not rec
1. Design test case and its configuration. 1. Design test case and its configuration.
2. Create a new test case xml file under ./XML/TestCases folder. Or, update with new tags 2. Create a new test case xml file under ./XML/TestCases folder. Or, update with new tags
in the existing xml file. in the existing xml file.
3. Define testName, PowershellScript, setupType, Platform, Category, Area and Tags as required. 3. Define testName, PowershellScript, setupType, Platform, Category, and Area as required.
Add optional tag if needed. Add optional tag if needed.
4. Test design may have two ways; 4. Test design may have two ways;
a. A single PowerShell script execution: A single PowerShell script imports builtin library a. A single PowerShell script execution: A single PowerShell script imports builtin library
modules and posts the result. For example, 'BVT-VERIFY-DEPLOYMENT-PROVISION.ps1' shows modules and posts the result. For example, 'BVT-VERIFY-DEPLOYMENT-PROVISION.ps1' shows
this script calls 'DeployVMs' function for its testing and collect the result this script calls 'DeployVMs' function for its testing and collect the result
by 'CheckKernelLogs'. 'DeplyVMs' and 'CheckKernelLogs' are functions definded by 'CheckKernelLogs'. 'DeployVMs' and 'CheckKernelLogs' are functions definded
in ./Libraries/CommonFunctions.psm1 module. in ./Libraries/CommonFunctions.psm1 module.
You can add new module or update existing ones for further development. You can add new module or update existing ones for further development.
b. PowerShell script wraps multiple non-PowerShell script like Bash or Python scripts: b. PowerShell script wraps multiple non-PowerShell script like Bash or Python scripts: