Mockito lambda matcher2022-06-28 Mockito TestingWe take a quick look at how to use lambda matchers to verify the input of a method call on a mock.
Structured concurrency in Java2022-06-28 Multithreading JavaWe look at how to use structured concurrency in Java with JEP 428.
Setting the strictness of Mockito mock(s)2022-06-07 Mockito TestingHow to set the strictness of your mocks at the class level and change the strictness of individual mocks.
Create an annotation and read its data2022-05-14 Annotation JavaCreating an annotation and accessing its metadata during runtime to print the data to the console output.
Web crawler with virtual threads2022-05-13 Multithreading JavaWeb scraper that uses virtual threads to find URLs on the internet.