JFairy Test Data Generator for Test Cases N B 4/19/2020 06:35:00 pm 0 Fairy can also create below objects & produce test data. Person (See the example below) Credit Card (CC Vendor, Expiry etc) Net... Read more »
Java Streams, Lambda Expression N B 3/22/2020 07:53:00 pm 0 Streams We can perform various aggregate operations on the data returned from collections classes by reducing the complexity of the code. ... Read more »
How to Create a Standalone Wiremock Stub Server N B 3/07/2020 09:51:00 pm 0 Why we need Mocking? We are often in a need to create stubs or mocks when the API under test is not completely ready or we need to test t... Read more »
Comparable Interface in Java N B 3/07/2020 01:41:00 pm 0 Java Comparable interface is used to order the objects of user-defined class. This interface is found in java.lang package and contains ... Read more »
Comparator in Java N B 3/07/2020 01:40:00 pm 0 It is in java.util package Comparator is used to have customized sorting It defines two methods 1.) Compare 2.) Equals public in... Read more »
Why we Override toString() N B 3/07/2020 01:12:00 pm 0 Class without toString() Override package EmployeeWithLowestSalaryUsingPriorityQueue; public class Employee { String name; i... Read more »
TreeSet N B 3/07/2020 01:12:00 pm 0 TreeSet is implementation of Set interface We have other implementation as well like HashSet and LinkedHashset. We use HashSet if we ... Read more »
PriorityQueue N B 3/07/2020 01:11:00 pm 0 In which scenarios we should use PriorityQueue. For example, you may want to order employee records in the ascending order of their salar... Read more »
Thread Pool Concepts and Parameters Required for Tuning N B 3/07/2020 12:49:00 pm 0 If there are more than corePoolSize but less than maximumPoolSize threads running, a new thread will be created only if the queue is full.)... Read more »
SonarQube N B 2/24/2020 08:03:00 pm 0 SonarQube –SonarQube empowers all developers to write cleaner and safer code. It is an open-source platform developed by SonarSource fo... Read more »