JMeter If Controller Example

if controller in jmeter is very useful in any software application’s load testing using jmeter. If controller in jmeter allows you to set condition to evaluate it and based on condition evaluation result it will decide to run or not to run if controller’s child elements. jmeter if controller‘s if condition evaluation result is positive … Read more

Globalization Testing and Localization Testing

Globalization testing and localization testing is useful for a software which are going to be used in many country or all over the world. Let discuss one by one. Globalization Testing : Globalization testing is also called as a Internationalization testing. Globalization testing means testing Globalized Application to ensure that the software can be used … Read more

Java LinkedHashSet Class

LinkedHashSet Class extends extends HashSet class and Implements Set interface in collection interface hierarchy. LinkedHashSet implementation differs from HashSet as it maintains doubly-linked list running through all of its entries. It maintains element’s entries in set as per it’s insertion order. So it will allow you insertion order iteration over the set. So when you iterate over LinkedHashSet, … Read more

Java Set Interface And Methods

Set is one of the collection framework interface which extends root Collections interface. Set collection can not contain duplicate elements. Set interface has all methods which are inherited from Collection interface with special restriction of not allowing duplicate elements. If two Set interface contains same elements then both are equal. Set interface is implemented by … Read more