Software acceptance test plan: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 30: Line 30:
* [https://docs.gitlab.com/ee/ci/pipelines.html Introduction to pipelines and jobs | GitLab]
* [https://docs.gitlab.com/ee/ci/pipelines.html Introduction to pipelines and jobs | GitLab]
* [https://en.wikipedia.org/wiki/Functional_testing Functional testing - Wikipedia] function test ([http://terms.naer.edu.tw/detail/1279055/ 功能測試])
* [https://en.wikipedia.org/wiki/Functional_testing Functional testing - Wikipedia] function test ([http://terms.naer.edu.tw/detail/1279055/ 功能測試])
* [https://www.krispmschool.com/share/sw_docs/software_test_report.php 軟體/系統測試報告(STR)文件下載-Kris專案管理學院]
* 軟體測試報告 (Software Testing Report, STR) [https://www.krispmschool.com/share/sw_docs/software_test_report.php 軟體/系統測試報告(STR)文件下載-Kris專案管理學院]


[[Category:Programming]] [[Category:Software]]
[[Category:Programming]] [[Category:Software]]

Latest revision as of 11:43, 27 November 2018

使用者驗收測試(User Acceptance Test, UAT)

Goal -> functional features & non-functional features -> test plain


Checklist[edit]

  1. Build new environment using docker
    • Language Interpreter version & package version
    • System requirement: e.g. CPU & memory usage
  2. Deploy and run the codes
  3. Testing
    • Testing by small amount data, large amount data
    • Expected or un-expected result
    • Validate the dataflow:
      • Format of input data & output data
      • Rows count of data or file size[1]
      • Data dependency: If the input data came from previous step, you should check the format of data generated by previous step before executing the process.
  4. Progressive update
    • Incremental updates: How to apply new data to the current model
    • How to use new data to update the model

References & related articles[edit]

References:

Related articles: