Category «Automation»

What is Unit Testing

Unit – the smallest piece of code that can be logically isolated and tested with input and output. Testing individual units or modules of an application. The purpose is to validate if the independent modules (code) work as expected. Mostly done during the development (coding phase) of an application by the developers. 

What is JSON

JSON stands for JavaScript Object Notation An open standard file format to store and transport data Uses human-readable format (key-value pairs) Primarily to transmit data between a server and a web application Rules Data is in name/value pairs Data is separated by commas Curly braces hold objects Square brackets hold arrays References – https://www.shapediver.com/blog/json-objects-explained/

What is Requirements Traceability Matrix (RTM)

RTM or Requirements Traceability Matrix is a document that is created at the beginning of a project and lists all the requirements. This forms the links between the requirements and the work done (development/testing/validation) to implement and verify those requirements. Parameters of RTM: Requirement ID Requirement Type Requirement Description Link to Design Specification Link to …