Catching exceptions in java2022-03-28 Java ExceptionsIn this post we cover how to catch exceptions in Java and what rules there are when you do so.
Mock final class and final method with Mockito2022-03-08 Mockito TestingUse mockito to mock final classes and methods.
Mock constructor calls with Mockito2022-02-20 Mockito TestingUse mockito to mock calls made to the constructor and return a mock.
Creating Virtual Threads2022-02-09 Multithreading JavaCreating virtual threads using the Thread class and Concurrency API and using structured Concurrency.