JMeter – Random Order Controller Example

Random order controller in apache jmeter is used to execute requests of jmeter software load test plan in random order. This is the only difference between simple controller and random order controller. We will learn usage of random order controller in jmeter software load test plan with example. Add Random Order Controller In Load Test … Read more

Java SortedSet Interface

SortedSet interface extends Set interface in collection framework of java. As name suggest, It provides total ordering on elements of Set. Set elements will be ordered using their natural ordering or using a comparator interface. All the elements entries of SortedSet must implement Comparable interface. All the elements of SortedSet must be comparable. So e1.compareTo(e2) … Read more

Jmeter Transaction Controller Example

Transaction Controller is one of the logic controllers of apache jmeter which is useful to measure over all time taken to perform complete transaction of any software web application’s load testing scenario. Example : Total time taken to place online order on any eCommerce software web application. This includes all the requests which are required … Read more

Use Case Testing

Use case testing is basically a Test Designing technique. Use case contains the steps, this steps explains how the actor (which may be anything like user, client or other devices or system.) interacts between the applications. So this use case cover all the functional requirement of the application. It has two parts one is main … Read more