Friday, May 15, 2020

Manual Software Test Case Document Writing


MANUAL SOFTWARE TEST CASE DOCUMENT 

Basic Introduction to creating Manual Test Case Document


How to create a test case document into the manual testing?

General Instruction

 

1.    All Text Field must have “max length” parameter set as per the value to be stored in table and must be equal to column length in table.

2.    All Text Field must have “placeholder” parameter set as per label.

3.    Required field must be applied to at least one column.

4.    After saving required information the add screen must get redirected to list page.

5.    All field must be tested for Sql injection. Must be handled for apostrophe(‘), Slash(/) etc symbol if allowed.

 

Field Specific Validation.

 

1.    Email Field.

a.    Must be valid email on all the pages

2.    Numeric Field.

a.    Must allow only numeric value.

3.    Price Field.

a.    Must allow numeric values only

b.    Must have format #0.00

c.    Must be comma separated for display only in International System.

d.    Must have max length which is properly validated and handled in database and query.

e.    Must be right align always.

4.    Telephone.

a.    Must allow only Numeric values with + and - and ()

b.    Must not allow alphabet to be inserted.

c.    Must be handled in query and database.

5.    Date Field.

a.    Must not allow alphabet

b.    Select date from datepicker

c.    Default format dd/mm/yyyy

d.    Save date in database as yyyy-mm-dd hh:mm:ss

 

 


No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

SQL Server Unique Constraint

SQL Server Unique Constraint Whats is Unique Constraint in SQL | How to create Unique Constraint in SQL | Unique Constraint with Example in ...