427 B
427 B
Assertions
Example on how to use assertions in Java
Compile
javac ./src/Assertions.java -d ./bin/
Run
Assertions need to be enabled with -ea or -enableassertions
java -ea -cp ./bin Assertions
Notes
-cpSpecifies a list of directories, JAR files, and ZIP archives to search for class files.-dSets the destination directory for class files.-eaor-enableassertionsEnables assertions.