-
Intellij IDEA How to build project automatically
By default, Intellij IDEA doesn’t compile classes automatically. But, you can enable the auto compile feature by following steps :
Date: 2019-08-17 View: 2206
-
Intellij + Infinitest Continuous Testing
The Infinitest is a continuous testing plugin, it helps to run the test automatically.
Date: 2019-08-17 View: 2106
-
JUnit Run test in a particular order
In JUnit, you can use @FixMethodOrder(MethodSorters.NAME_ASCENDING) to run the test methods by method name, in lexicographic order.
Date: 2019-08-17 View: 1726
-
Java Custom Exception Examples
In Java, there are two types of exceptions – checked and unchecked exception. Here’s the summary :
Date: 2019-08-17 View: 1939
-
JUnit Assert if a property exists in a class
Includes hamcrest-library and test the class property and its value with hasProperty() :
Date: 2019-08-17 View: 2304
-
JUnit Categories Test
In JUnit, you can organize the test cases into different categories, and run those categorized test cases with @Categories.ExcludeCategory or @Categories.IncludeCategory
Date: 2019-08-17 View: 1720
-
JUnit + Spring integration example
In this tutorial, we will show you how to test the Spring DI components with JUnit frameworks.
Date: 2019-08-17 View: 1901
-
Unit Test What is Mocking? and Why?
In simple, mocking is creating objects that mimic the behavior of real objects. Refer to the following case study :
Date: 2019-08-17 View: 1941
-
How to install Oracle JDK 8 on CentOS
In this tutorial, we will show you how to install Oracle JDK 8 On CentOS.
Date: 2019-08-17 View: 2943
-
Java Final keyword example
Final keyword in Java is a modifier used to restrict the user from doing unwanted code or preventing from the code or value from being changed. It is possible to use this keyword in 3 contexts. They are:
Date: 2019-08-17 View: 1970
-
MySQL Backup and restore a database or table
In this tutorial we will show you how to use backup and restore a MySQL database or tables.
Date: 2019-08-17 View: 3080
-
Java 8 Convert Map to List
Few Java examples to convert a Map to a List
Date: 2019-08-17 View: 2111
-
Java 8 Filter a null value from a Stream
Review a Stream containing null values.
Date: 2019-08-17 View: 2939
-
Java 8 Convert a Stream to List
A Java 8 example to show you how to convert a Stream to a List via Collectors.toList
Date: 2019-08-17 View: 2873
-
Java 8 How to sort a Map
Java 8 Stream examples to sort a Map, by keys or by values.
Date: 2019-08-17 View: 2552


