Tag: Mockito
-
JAVA Unit Test: Why they can “save” our life?
The Unit Test cases raise the quality of your final product and then you will raise the quality of your reputation
-
The magic of Interfaces: use JMS to create Queue/Topic producers and consumers
Remove particular implementations and use interfaces (for JMS or other features) improve the independency and flexibility of your application: with a few changes you can change providers, APIs or products without modify your business/main logic
-
JAVA Unit Test for Spring Boot with Mockito and EasyMock
Here they are some ideas about testing using the different tools given by Spring Boot Test dependency. For me and my team they are so useful when we write and run the Unit Test for medium or high complexity classes.
-
Spring Boot Application with Jersey Rest End Points
Yesterday I received a requirement to create a JAVA Spring Boot Application with Jersey Rest end-points. Researching on Internet about how to overwrite the SB configuration I founded that it solves with only one dependency! So, here is a little example about how to configure and test (with Mockito and EasyMock) a Jersey end-point in…