Software acceptance test plan: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
** Testing by small amount data, large amount data
** Testing by small amount data, large amount data
** Expected or un-expected result
** Expected or un-expected result
** Validate the (1) format of input data & output data e.g. data type of column, (2) file size
** Validate the (1) format of input data & output data e.g. data type of column, (2) file size<ref>[https://stackoverflow.com/questions/5920333/how-to-check-size-of-a-file bash - How to check size of a file? - Stack Overflow]</ref>
*** If the input data came from previous step, you should check the format of data generated by previous step before executing the process.
*** If the input data came from previous step, you should check the format of data generated by previous step before executing the process.



Revision as of 13:13, 6 April 2018

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

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


Execution environment:

  • (1) build new environment (version & package version were defined) using docker
  • (2) deploy the codes
  • (3) testing
    • Testing by small amount data, large amount data
    • Expected or un-expected result
    • Validate the (1) format of input data & output data e.g. data type of column, (2) file size[1]
      • If the input data came from previous step, you should check the format of data generated by previous step before executing the process.

References