If you want to always intentionally fail a Java Junit test case then make use of the static fail() method from the org.junit.jupiter.api.Assertions class.
import static org.junit.jupiter.api.Assertions.fail;
public class TestJunit {
@Test
public void failTest() {
System.out.println("hello there!");
fail("This case will always fail!");
}
}
org.opentest4j.AssertionFailedError: This case will always fail!
at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:38)
at org.junit.jupiter.api.Assertions.fail(Assertions.java:135)
at TestJunit.failTest(TestJunit.java:11)
...
...
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- [Fix] SharePoint: This embed code doesnt seem to work. We only support iframe based embeds - SharePoint
- Android Error Unexpected cast to Button: layout tag was FrameLayout - Android
- How to clear Mac Terminal screen - MacOS
- How to share SharePoint site or document with all users in organization - SharePoint
- How to turn off Stage Manager - macOS Ventura - MacOS
- 300+ Eclipse IDE Keyboard Shortcuts for Mac - Eclipse
- [Android Studio] Could not automatically detect an ADB binary - Android-Studio
- How to format or prettify XML in Notepad++ - NotepadPlusPlus