Assertions in Java

Ran into a puzzle the other day. My assertions in Java were not working. That was a puzzle- since assertions always worked in C#. Turns out- assertions in Java are turned off by default. To enable assertions, one must execute the Java class with -ea. Example:

java -ea Test.java