-
Enterprise Java👁 Image
Mockito: Cannot instantiate @InjectMocks field: the type is an abstract class
Anyone who has used Mockito for mocking and stubbing Java classes, probably is familiar with the InjectMocks-annotation. Use this annotation…
Read More » -
Enterprise Java👁 Image
Mockito: Cannot instantiate @InjectMocks field: the type is an interface
Anyone who has used Mockito for mocking and stubbing Java classes, probably is familiar with the InjectMocks-annotation. Use this annotation…
Read More » -
Enterprise Java👁 Image
Mock Void method with Mockito
Hey guys! After our previous blog on difference between thenReturn and thenAnswer mockito methods, we are back with yet another…
Read More » -
Enterprise Java👁 Image
Mockito ‘thenReturn’ vs Mockito ‘thenAnswer’
When it comes to writing test cases for code, Mockito is one of the most common choices of developers. Then…
Read More » -
Enterprise Java👁 Image
Clean Code from the Trenches – Writing Executable Specifications with JUnit 5, Mockito, and AssertJ
Executable Specifications are tests that can also serve as design specifications. They enable technical and business teams to get on…
Read More » -
Core Java👁 Image
Mockito Matchers Precedence
This post is opinion. Let’s look at the verify method in Mockito for testing in Java. Example: verify(myMock).someFunction(123) – expects…
Read More » -
Enterprise Java👁 Image
Seven Testing Sins and How To Avoid Them
Throughout this article I will be using Java within code snippets, whilst also using JUnit and Mockito. This article aims…
Read More » -
Enterprise Java👁 Image
Simplify integration testing of legacy application with Spock 1.2
Learn how leverage Spock 1.2 to slice a Spring context of a legacy application writing integration tests. Have you ever…
Read More » -
Core Java👁 Image
Java: Mocking a ResultSet using Mockito
This post shows how you can mock a java.sql.ResultSet using Mockito. It can be used to help unit test code…
Read More »
