Posts

Showing posts from July, 2024

Importance of Unit Testing

Image
Importance of Unit Testing   In this post, we will discuss about Unit Testing. The below topics will be covered Brief Introduction to Unit Testing Advantages of Unit Testing Limitations of Unit Testing Brief Introduction to Unit Testing Nowadays Unit Testing is essential in the Software Development process.  Unit Testing ensures the quality of software deliverables.  During recruitment all leading Organizations keep Unit Testing as the primary skill set in their job description. 1.1 Types of Unit Testing Unit Testing is categorized as below Manual Unit testing Automation of Unit testing 1.1.1 Manual Unit Testing Developers will write unit tests specific to the module under development and document them. During development, test cases will be executed before committing the source code for that module to the repository. Manual Unit tests will be executed on the target platform on which the final released Software will run.  Developers run the software under d...