0
4.0kviews
Explain any two internal standards in test management.
1 Answer
-8
266views

Internal standards are:

  1. Naming and storage conventions for test artifacts.

  2. Document standards

  3. Test coding standards

  4. Test reporting standards.

A. Naming and storage conventions for test artifacts: Every test artifacts(test specification, test case, test results and so on)have to be named appropriately and meaningfully. It enables

a) Easy identification of the product functionality.

b) Reverse mapping to identify the functionality corresponding to a given set of tests. e.g. modules shall be M01,M02. Files types can be .sh, .SQL.

B. Documentation standards:

a) Appropriate header level comments at the beginning of a file that outlines the functions to be served by the test.

b) Sufficient inline comments, spread throughout the file

c) Up-to-Date change history information, reading all the changes made to the test file.

C. Test coding standards:

a) Enforce right type of initialization

b) Stipulate ways of naming variables.

c) Encourage reusability of test artifacts

d) Provide standard interfaces to external entities like operating system, hardware and so on.

D. Test reporting standard: All the stakeholders must get a consistent and timely view of the progress of tests. It provides guidelines on the level of details that should be present in the test report, their standard formats and contents.

Please log in to add an answer.