Levels of Software Testing

Software level testing can be majorly classified into 4 levels:  1. Unit Testing 2. Integration Testing 3. System Testing 4. Acceptance Testing Unit testing:  A UNIT is a smallest testable portion of system or application which can be compiled, liked, loaded, and executed. This kind of testing helps to test each module separately. The aim is to test each… Continue reading Levels of Software Testing

Bug tracking tool

We have various types of bug tracking tools available in software testing that helps us to track the bug, which is related to the software or the application.  Some of the most commonly used bug tracking tools are as follows:  Jira  Bugzilla  Bug Net  Redmine  Mantis  Trac  Backlog  Bugzilla  Bugzilla is another important bug tracking… Continue reading Bug tracking tool

Assertions in JMeter

There are various test plan elements in JMeter like thread group controllers, listerns, timers ,assertions, etc. Assertions are used to verify and validate the data of requests that we have sent to the server. Using assertions we can compare the expected result with the actual result. For example, if we want to see a message like the welcome… Continue reading Assertions in JMeter

AUTOMATION TESTING

Another software testing method is automation testing, which is used some specific tools to execute the test scripts without any human interference. It is the most acceptable way to enhance the efficiency, productivity, and test coverage of Software testing. With the help of an automation testing tool, we can easily approach the test data, handle the test implementation, and compares… Continue reading AUTOMATION TESTING

Types Of Software Testing Techniques

There are two main categories of software testing techniques:  Static Testing Techniques are testing techniques which are used to find defects in Application under test without executing the code. Static Testing is done to avoid errors at an early stage of the development cycle and thus reducing the cost of fixing them.  Dynamic Testing Techniques… Continue reading Types Of Software Testing Techniques