Progressive Robot

Linux, Cloud & DevOps Tutorials

Practical, hands-on guides covering Linux, cloud infrastructure, Docker, Kubernetes, Python, cybersecurity, AI, and more — written for engineers at every level.

published tutorials
24,529
topic categories
21
languages available
8
Showing 1–5 of 5 tutorials
ProgrammingMay 12, 20261 min read

JUnit Assert Exception – JUnit 5 and JUnit 4

URL: https://www.progressiverobot.com/junit-assert-exception-expected/ We can test expected exceptions using [JUnit 5](/community/tutorials/junit5-tutorial) assertThrows assertion. This [JUnit assertion](/community/tutorials/junit-assertions) method returns the thrown exception,...

ProgrammingMay 12, 20261 min read

JUnit Display Name – @DisplayName

URL: https://www.progressiverobot.com/junit-display-name-displayname/ JUnit @DisplayName annotation is used to provide a custom name for the test class and test methods. We...

ProgrammingMay 12, 20261 min read

JUnit HTML Report

URL: https://www.progressiverobot.com/junit-html-report/ When we configure maven-surefire-plugin to run our JUnit tests, it generates surefire-reports directory. This directory contains a txt...

ProgrammingMay 12, 20268 min read

JUnit5 Tutorial

URL: https://www.progressiverobot.com/junit5-tutorial/ JUnit5 Tutorial In this Junit tutorial, we will introduce basics of JUnit5 and its new features using examples....

CHAT