-
Enterprise Java
How To Upgrade From Selenium 3 To Selenium 4?
Selenium 4, the latest version of the Selenium framework, has become the talk of the town since its announcement in…
Read More » -
Core Java
The Temporary Test Property
Just because you can make a variable a long-term property of a test fixture doesn’t mean you should. This is…
Read More » -
Core Java
So I Wrote a Library
If you’ve never done it, go out and find an open-source project to contribute to. Whether it’s one of your…
Read More » -
Software Development
Architecture Metrics
Last time we saw how major tech projects continue to be difficult to schedule. One thing that can keep momentum…
Read More » -
Enterprise Java
REST: Partial updates with PATCH
In previous posts we learned how to update/replace resources using the HTTP PUT operation. We also learned about the differences…
Read More » -
Enterprise Java
Testing with Mockito
1) Register MockitoExtension @ExtendWith(MockitoExtension.class) class ObjectTest { static final Long ID = 1L; 2) Create the mock @Mock private ObjectRepo…
Read More » -
Enterprise Java
Spring Injection Types
Spring supports three types of dependency injections: Constructor injection @Component public class SecondBeanImpl implements SecondBean { private FirstBean firstBean; @Autowired…
Read More » -
Python
Python join() method Tutorial
Hello in this tutorial, we will understand the join() method in python programming. 1. Introduction The join() method in python…
Read More » -
Software Development
The Pleasures of Replatforming
In an earlier post on migration, I looked at different ways to take a codebase and convert it for a…
Read More »