Example on how to use assertions in Java
Go to file
Ramon Caballero a8d54ad54e Example on how to use assertions in Java 2024-07-23 15:33:39 +01:00
src Example on how to use assertions in Java 2024-07-23 15:33:39 +01:00
.gitignore Example on how to use assertions in Java 2024-07-23 15:33:39 +01:00
README.md Example on how to use assertions in Java 2024-07-23 15:33:39 +01:00

README.md

Assertions

Example on how to use assertions in Java

Compile

javac Assertions.java

Run

Assertions need to be enabled with -ea or -enableassertions

java -ea Assertions

or

java -enableassertions Assertions