Articles, Home

Java in App Service on Linux

Shrirang Shirodkar joins Donovan Brown to discuss what’s new in App Service for Java developers. You’ll see how Java developers can build web apps for Linux without having to deal with custom Docker c

Articles, Home

Java Testing Weekly 24 / 2018

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 How to Create Selenium Reports with EventListeners is an interesting blog post that explains how you can create test reports or logs without writing any duplicate code. JUnit5 Programmatic Extension Registration with @RegisterExtension describes how you can register custom JUnit 5 extensions by using the @RegisterExtension annotation. Also, the author explains the difference between adding this annotation to a static field and adding this annotation to an instance field. Mockito ArgumentMatchers is a pragmatic blog post that describes how you can use Mockito’s argument matchers. This post also explains the difference between an argument matcher and an argument captor, and helps you to use the right tool for the job. Spring REST Docs – Test driven documentation of your REST API is a

Articles, Home

Java By Comparison: Become a Java Craftsman in 70 Examples: Simon Harrer, Jörg Lenhard, Linus Dietz: 9781680502879: Amazon.com: Books

Java By Comparison: Become a Java Craftsman in 70 Examples [Simon Harrer, Jörg Lenhard, Linus Dietz] on Amazon.com. *FREE* shipping on qualifying offers.

Write code that’s clean, concise, and to the point: code that others will read with pleasure and reuse. Comparing your code to that of expert programmers is a great way to improve your coding skills. Get hands-on advice to level up your coding style through small and understandable examples that compare flawed code to an improved solution. Discover handy tips and tricks

Articles, Home

Are Java method references stable?

If I obtain a method reference using the new syntax:anObject::aMethodDo I always get the same object? That is, can I trust that two references to the same method will be equal?This is good to…