Articles, Home

Java Testing Weekly 25 / 2019

There are many software development blogs out there, but many of them don’t publish testing articles on a regular basis. Also, I have noticed that some software developers don’t read blogs written by software testers. That is a shame because I think that we can learn a lot from them. That is why I decided to create a newsletter that shares the best testing articles which I found during the last week. Let’s get started. Technical Stuff Selenium – XPath Unleashed Part One provides a quick introduction to basic XPath locators which you can use when you are writing end-to-end tests with Selenium. The Really Valuable Stuff Test driven development: theory and practice is a yet another introduction to TDD. However, this blog post is actually a good one because it also talks about the pitfalls of TDD and admits that sometimes automated tests have a negative impact to the design of the implemented application. Types and Tests is a thought-provoking blog post that investigates the claim: “If you are using dynamic typing, you need to write tests for “illegal input” (wrong types, null values, and so on) because you don’t have the safety net provided by static typing”. Unit