Articles, dummyCategory

Java Testing Weekly 8 / 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 Building a Camel Case @DisplayNameGenerator For JUnit 5 is an interesting blog post that explains how you can write a custom DisplayNameGenerator which generates display names from the names of your test methods. How to Test the @Scheduled Annotation is a practical blog post that describes two different ways to ensure that a scheduled method is run. JUnit 5 Tutorial: Running Unit Tests With Gradle is the second part of my JUnit 5 tutorial, and I updated it because of the changes made to both JUnit 5.4.0 and Gradle. The Really Valuable Stuff Code Coverage vs Test Coverage; Subjectivity and Usefulness is an excellent blog post that explains the difference between code coverage and test coverage. This blog post also reveals why you

Articles, Home

MicroProfile Community Launches MicroProfile Starter, a Web-Based Project Generator

The MicroProfile community has recently launched a beta release of MicroProfile Starter, a website that allows you to create, configure and download a new automatically generated project. Users can specify the project’s coordinates (groupId and artifactId), which version of MicroProfile you’d like to use, your MicroProfile server, and a number of other project configuration options.

Articles, Home

Java JDBC

The Java JDBC API enables Java applications to interact with relational databases like MySQL, PostgreSQL, MS SQL Server, H2 Database etc. This JDBC tutorial explains how to use the JDBC API to connect to, query, and update relational databases.