State Transition Testing

It is the test design technique which help us to find out scenarios based on state transition of the software and also help us to write the effective test cases for software transition from one state to another. Means it is helpful when we want to test different state transition. State Transition is helpful when … Read more

HashSet in Java Collection Example

HashSet is a class of collection framework which extends AbstractSet class and implements the Set interface. HasSet doesn’t guarantee that elements order will remain same over the time and returned in any random order. HasSet doesn’t allow duplicate values. If you try to insert duplicate, It will overwrite. HasSet allows to store null values. HasSet … Read more

What Is Decision Table?

In this article we are going to discuss about decision table. Decision Table : In simple word, Decision table is useful to reduce our test conditions (test cases) by elimination some test cases which has same result/output. Decision table is also called cause-effect table. We know about the techniques called boundary value analysis and equivalence … 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